From c4f5bfe1a475e07a838d4353b48215187ec7801c Mon Sep 17 00:00:00 2001 From: vlad-outscraper Date: Fri, 21 Jan 2022 16:18:27 +0200 Subject: [PATCH] docker fix --- outscraper/api_client.py | 5 +---- setup.py | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/outscraper/api_client.py b/outscraper/api_client.py index 086017c..aa85042 100644 --- a/outscraper/api_client.py +++ b/outscraper/api_client.py @@ -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 @@ -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 diff --git a/setup.py b/setup.py index 4d448a2..9a8a11e 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,6 @@ from setuptools import setup -from outscraper import VERSION - - def readme(): with open('README.rst') as f: return f.read() @@ -11,7 +8,7 @@ def readme(): 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',