Skip to content

Commit 8a31fe9

Browse files
authored
Misspelling
1 parent 641e008 commit 8a31fe9

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ pip install google-services-api
2222
```python
2323
from outscraper import ApiClient
2424

25-
api_cliet = ApiClient(api_key='SECRET_API_KEY')
26-
result = api_cliet.google_maps_search(
25+
api_client = ApiClient(api_key='SECRET_API_KEY')
26+
result = api_client.google_maps_search(
2727
'restaurants brooklyn usa', limit=20, language='en')
2828
```
2929

@@ -32,8 +32,8 @@ result = api_cliet.google_maps_search(
3232
```python
3333
from outscraper import ApiClient
3434

35-
api_cliet = ApiClient(api_key='SECRET_API_KEY')
36-
result = api_cliet.google_maps_reviews(
35+
api_client = ApiClient(api_key='SECRET_API_KEY')
36+
result = api_client.google_maps_reviews(
3737
'Memphis Seoul brooklyn usa', reviewsLimit=20, language='en')
3838
```
3939

@@ -42,8 +42,8 @@ result = api_cliet.google_maps_reviews(
4242
```python
4343
from outscraper import ApiClient
4444

45-
api_cliet = ApiClient(api_key='SECRET_API_KEY')
46-
result = api_cliet.google_maps_photos(
45+
api_client = ApiClient(api_key='SECRET_API_KEY')
46+
result = api_client.google_maps_photos(
4747
'Trump Tower, NY, USA', photosLimit=20, language='en')
4848
```
4949

@@ -52,8 +52,8 @@ result = api_cliet.google_maps_photos(
5252
```python
5353
from outscraper import ApiClient
5454

55-
api_cliet = ApiClient(api_key='SECRET_API_KEY')
56-
result = api_cliet.google_play_reviews(
55+
api_client = ApiClient(api_key='SECRET_API_KEY')
56+
result = api_client.google_play_reviews(
5757
'com.facebook.katana', reviewsLimit=20, language='en')
5858
```
5959

0 commit comments

Comments
 (0)