File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed
amazon_scraper_by_outscraper Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 33from .utils import as_list
44
55
6- VERSION = '0.0.2'
7-
8-
96class AmazonClient (object ):
107 """AmazonClient - Python SDK.
118 ```python
@@ -22,7 +19,7 @@ class AmazonClient(object):
2219 def __init__ (self , api_key : str ) -> None :
2320 self ._api_headers = {
2421 'X-API-KEY' : api_key ,
25- 'client' : f 'Python G-Maps Reviews SDK { VERSION } '
22+ 'client' : 'Python Amazon SDK'
2623 }
2724
2825 def get_products (self , query : list , limit : int = 24 ) -> list :
Original file line number Diff line number Diff line change 11from setuptools import setup
22
33
4- from amazon_scraper_by_outscraper import VERSION
5-
6-
74def readme ():
85 with open ('README.rst' ) as f :
96 return f .read ()
107
118
129setup (
1310 name = 'amazon-scraper-by-outscraper' ,
14- version = VERSION ,
11+ version = '0.0.3' ,
1512 description = 'Amazon Scraper API SDK' ,
1613 long_description = readme (),
1714 classifiers = ['Programming Language :: Python' ,
You can’t perform that action at this time.
0 commit comments