File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -65,6 +65,9 @@ Get the ASIN from a URL:
6565
6666Changelog
6767-------------
68+ Version 3.0.1
69+ - Solved import bug.
70+
6871 Version 3.0.0
6972 - Added search_products and get_variations methods.
7073 - Removed Amazon API requests limit for all methods.
Original file line number Diff line number Diff line change 11"""Amazon Product Advertising API wrapper for Python"""
22
3- __version__ = '3.0.0 '
3+ __version__ = '3.0.1 '
44__author__ = 'Sergio Abad'
Original file line number Diff line number Diff line change 1414
1515import time
1616
17- from constant import DOMAINS , REGIONS , CONDITION
18- from constant import PRODUCT_RESOURCES , SEARCH_RESOURCES , VARIATION_RESOURCES
19- from exception import AmazonException
20- from parse import parse_product
21- from tools import get_asin , chunks
17+ from . constant import DOMAINS , REGIONS , CONDITION
18+ from . constant import PRODUCT_RESOURCES , SEARCH_RESOURCES , VARIATION_RESOURCES
19+ from . exception import AmazonException
20+ from . parse import parse_product
21+ from . tools import get_asin , chunks
2222
2323
2424class AmazonAPI :
Original file line number Diff line number Diff line change 55
66setuptools .setup (
77 name = 'python-amazon-paapi' ,
8- version = '3.0.0 ' ,
8+ version = '3.0.1 ' ,
99 author = 'Sergio Abad' ,
1010 author_email = 'sergio.abad@bytelix.com' ,
1111 description = 'Amazon Product Advertising API 5.0 wrapper for Python' ,
You can’t perform that action at this time.
0 commit comments