File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 11# Google services API in Python
2- Python sdk that allows extracting data from Google services via [ OutScraper API] ( http://outscraper.com ) .
2+ Python SDK that allows extracting data from the following Google services via [ OutScraper API] ( http://outscraper.com ) :
3+
4+ - Google Places scraper
5+ - Google Reviews scraper
36
47## Installation
58
@@ -10,19 +13,20 @@ pip install google-services-api
1013
1114[ Link to the python package page] ( https://pypi.org/project/google-services-api/ )
1215
13- ## Quick start
16+ ## Scrape Google Maps/Places
1417
1518``` python
1619from outscraper import ApiClient
20+
1721api_cliet = ApiClient(api_key = ' SECRET_API_KEY' )
1822maps_result = api_cliet.google_maps_search(' restaurants brooklyn usa' )
19- search_result = api_cliet.google_search(' bitcoin' )
2023```
2124
22- ## Get business reviews
25+ ## Scrape Google Places Reviews
2326
2427``` python
2528from outscraper import ApiClient
29+
2630api_cliet = ApiClient(api_key = ' SECRET_API_KEY' )
2731business_with_reviews = api_cliet.google_maps_business_reviews(
2832 ' Memphis Seoul brooklyn usa' , limit = 100 , language = ' en' )
@@ -86,4 +90,4 @@ response:
8690 ...
8791 ]
8892}
89- ```
93+ ```
You can’t perform that action at this time.
0 commit comments