Skip to content

Commit 51987df

Browse files
author
vlad-outscraper
committed
change link and name
1 parent 01ce61a commit 51987df

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ result = api_client.google_play_reviews(
9090
result = api_client.emails_and_contacts(['outscraper.com'])
9191
```
9292

93-
[More examples](https://github.com/outscraper/google-scraper-pyhton/tree/master/examples)
93+
[More examples](https://github.com/outscraper/outscraper-pyhton/tree/master/examples)
9494

9595
## Responses examples
9696

outscraper/api_client.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ class ApiClient(object):
88
"""Outscraper ApiClient - Python SDK that allows using Outscraper's services and Outscraper's API.
99
```python
1010
from outscraper import ApiClient
11-
api_cliet = ApiClient(api_key='SECRET_API_KEY')
12-
maps_result = api_cliet.google_maps_search('restaurants brooklyn usa')
13-
search_result = api_cliet.google_search('bitcoin')
11+
cliet = ApiClient(api_key='SECRET_API_KEY')
12+
maps_result = cliet.google_maps_search('restaurants brooklyn usa')
13+
search_result = cliet.google_search('bitcoin')
1414
```
15-
https://github.com/outscraper/google-scraper-pyhton
15+
https://github.com/outscraper/outscraper-pyhton
1616
"""
1717

1818
_api_url = 'https://api.app.outscraper.com'

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,20 @@ def readme():
77

88

99
setup(
10-
name='google-services-api',
10+
name='outscraper',
1111
version='1.6.0',
12-
description='Google Maps and Google Maps reviews scraper by Outscraper API',
12+
description='Python bindings for the Outscraper API',
1313
long_description=readme(),
1414
classifiers = ['Programming Language :: Python',
1515
'License :: OSI Approved :: MIT License',
1616
'Operating System :: OS Independent',
1717
'Intended Audience :: Developers',
1818
'Topic :: Utilities',
1919
],
20-
keywords='extractor google api maps search json scrape parser reviews google play',
21-
url='https://github.com/outscraper/google-scraper-pyhton',
20+
keywords='outscraper webscraper extractor google api maps search json scrape parser reviews google play amazon',
21+
url='https://github.com/outscraper/outscraper-pyhton',
2222
author='Outscraper',
23-
author_email='team@outscraper.com',
23+
author_email='support@outscraper.com',
2424
license='MIT',
2525
packages=['outscraper'],
2626
install_requires=['requests'],

0 commit comments

Comments
 (0)