Skip to content

Commit 27d687c

Browse files
authored
Update README.md
1 parent f53cf53 commit 27d687c

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff 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
1616
from outscraper import ApiClient
17+
1718
api_cliet = ApiClient(api_key='SECRET_API_KEY')
1819
maps_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
2525
from outscraper import ApiClient
26+
2627
api_cliet = ApiClient(api_key='SECRET_API_KEY')
2728
business_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+
```

0 commit comments

Comments
 (0)