Skip to content

Commit

Permalink
docker fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vlad-stack committed Jan 21, 2022
1 parent edba84c commit c4f5bfe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions outscraper/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
from .utils import as_list


VERSION = '1.3.2'


class ApiClient(object):
"""Outscraper ApiClient - Python SDK that allows using Outscraper's services and Outscraper's API.
```python
Expand All @@ -27,7 +24,7 @@ class ApiClient(object):
def __init__(self, api_key: str, requests_pause: int = 5) -> None:
self._api_headers = {
'X-API-KEY': api_key,
'client': f'Python SDK {VERSION}'
'client': f'Python SDK'
}
self._requests_pause = requests_pause

Expand Down
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
from setuptools import setup


from outscraper import VERSION


def readme():
with open('README.rst') as f:
return f.read()


setup(
name='google-services-api',
version=VERSION,
version='1.3.3',
description='Google Maps and Google Maps reviews scraper by Outscraper API',
long_description=readme(),
classifiers = ['Programming Language :: Python',
Expand Down

0 comments on commit c4f5bfe

Please sign in to comment.