File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -10,19 +10,20 @@ pip install google-services-api
1010
1111[ Link to the python package page] ( https://pypi.org/project/google-services-api/ )
1212
13- ## Quick start
13+ ## Scrape Google Maps/Places
1414
1515``` python
1616from outscraper import ApiClient
17+
1718api_cliet = ApiClient(api_key = ' SECRET_API_KEY' )
1819maps_result = api_cliet.google_maps_search(' restaurants brooklyn usa' )
19- search_result = api_cliet.google_search(' bitcoin' )
2020```
2121
22- ## Get business reviews
22+ ## Scrape Google Places Reviews
2323
2424``` python
2525from outscraper import ApiClient
26+
2627api_cliet = ApiClient(api_key = ' SECRET_API_KEY' )
2728business_with_reviews = api_cliet.google_maps_business_reviews(
2829 ' Memphis Seoul brooklyn usa' , limit = 100 , language = ' en' )
@@ -86,4 +87,4 @@ response:
8687 ...
8788 ]
8889}
89- ```
90+ ```
You can’t perform that action at this time.
0 commit comments