Skip to content

Commit c4f5bfe

Browse files
author
vlad-outscraper
committed
docker fix
1 parent edba84c commit c4f5bfe

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

outscraper/api_client.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44
from .utils import as_list
55

66

7-
VERSION = '1.3.2'
8-
9-
107
class ApiClient(object):
118
"""Outscraper ApiClient - Python SDK that allows using Outscraper's services and Outscraper's API.
129
```python
@@ -27,7 +24,7 @@ class ApiClient(object):
2724
def __init__(self, api_key: str, requests_pause: int = 5) -> None:
2825
self._api_headers = {
2926
'X-API-KEY': api_key,
30-
'client': f'Python SDK {VERSION}'
27+
'client': f'Python SDK'
3128
}
3229
self._requests_pause = requests_pause
3330

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
from setuptools import setup
22

33

4-
from outscraper import VERSION
5-
6-
74
def readme():
85
with open('README.rst') as f:
96
return f.read()
107

118

129
setup(
1310
name='google-services-api',
14-
version=VERSION,
11+
version='1.3.3',
1512
description='Google Maps and Google Maps reviews scraper by Outscraper API',
1613
long_description=readme(),
1714
classifiers = ['Programming Language :: Python',

0 commit comments

Comments
 (0)