Skip to content

Commit

Permalink
Merge branch 'developer'
Browse files Browse the repository at this point in the history
  • Loading branch information
sergioteula committed Mar 9, 2020
2 parents 89a7aca + edc5ce6 commit 5f8df4c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ Get the ASIN from a URL:

Changelog
-------------
Version 3.0.1
- Solved import bug.

Version 3.0.0
- Added search_products and get_variations methods.
- Removed Amazon API requests limit for all methods.
Expand Down
2 changes: 1 addition & 1 deletion amazon/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Amazon Product Advertising API wrapper for Python"""

__version__ = '3.0.0'
__version__ = '3.0.1'
__author__ = 'Sergio Abad'
10 changes: 5 additions & 5 deletions amazon/paapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@

import time

from constant import DOMAINS, REGIONS, CONDITION
from constant import PRODUCT_RESOURCES, SEARCH_RESOURCES, VARIATION_RESOURCES
from exception import AmazonException
from parse import parse_product
from tools import get_asin, chunks
from .constant import DOMAINS, REGIONS, CONDITION
from .constant import PRODUCT_RESOURCES, SEARCH_RESOURCES, VARIATION_RESOURCES
from .exception import AmazonException
from .parse import parse_product
from .tools import get_asin, chunks


class AmazonAPI:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name='python-amazon-paapi',
version='3.0.0',
version='3.0.1',
author='Sergio Abad',
author_email='[email protected]',
description='Amazon Product Advertising API 5.0 wrapper for Python',
Expand Down

0 comments on commit 5f8df4c

Please sign in to comment.