Skip to content

Commit 5f8df4c

Browse files
committed
Merge branch 'developer'
2 parents 89a7aca + edc5ce6 commit 5f8df4c

4 files changed

Lines changed: 10 additions & 7 deletions

File tree

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,9 @@ Get the ASIN from a URL:
6565

6666
Changelog
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.

amazon/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Amazon Product Advertising API wrapper for Python"""
22

3-
__version__ = '3.0.0'
3+
__version__ = '3.0.1'
44
__author__ = 'Sergio Abad'

amazon/paapi.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414

1515
import 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

2424
class AmazonAPI:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.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',

0 commit comments

Comments
 (0)