Metadata-Version: 2.1
Name: google-services-api
Version: 0.0.1
Summary: Google services extractor by OutScraper API
Home-page: http://github.com/outscraper/google-services-api-pyhton
Author: OutScraper
Author-email: team@outscraper.com
License: MIT
Keywords: extractor google api maps search json scrape parser
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities

# Google services API in Python
Python sdk that allows extracting data from Google services via [OutScraper API](http://outscraper.com).

## Quick start

```python
from outscraper import ApiClient
api_cliet = ApiClient(api_key='SECRET_API_KEY')
maps_result = api_cliet.google_maps_search('restaurants brooklyn usa')
search_result = api_cliet.google_search('bitcoin')
```

