Skip to content

Commit 4412173

Browse files
author
vlad
committed
2 parents a31c391 + bb7da36 commit 4412173

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
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
1619
from outscraper import ApiClient
20+
1721
api_cliet = ApiClient(api_key='SECRET_API_KEY')
1822
maps_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
2528
from outscraper import ApiClient
29+
2630
api_cliet = ApiClient(api_key='SECRET_API_KEY')
2731
business_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+
```

0 commit comments

Comments
 (0)