@@ -2,10 +2,10 @@ Amazon Product Advertising API 5.0 wrapper for Python
22=======================================================
33A simple Python wrapper for the last version of the Amazon Product Advertising API. This module allows to get product information from Amazon using the official API in an easier way.
44
5- [ ![ PyPI] ( https://img.shields.io/pypi/v/python-amazon-paapi5?color=%231182C2&label=PyPI )] ( https://pypi.org/project/python-amazon-paapi5 / )
5+ [ ![ PyPI] ( https://img.shields.io/pypi/v/python-amazon-paapi5?color=%231182C2&label=PyPI )] ( https://pypi.org/project/python-amazon-paapi / )
66[ ![ Python] ( https://img.shields.io/badge/Python-2.x%20%7C%203.x-%23FFD140 )] ( https://www.python.org/ )
7- [ ![ License] ( https://img.shields.io/badge/License-GPL--3.0-%23e83633 )] ( https://github.com/sergioteula/python-amazon-paapi5 /blob/master/LICENSE )
8- [ ![ Support] ( https://img.shields.io/badge/Support-Good-brightgreen )] ( https://github.com/sergioteula/python-amazon-paapi5 /issues )
7+ [ ![ License] ( https://img.shields.io/badge/License-GPL--3.0-%23e83633 )] ( https://github.com/sergioteula/python-amazon-paapi /blob/master/LICENSE )
8+ [ ![ Support] ( https://img.shields.io/badge/Support-Good-brightgreen )] ( https://github.com/sergioteula/python-amazon-paapi /issues )
99[ ![ Amazon API] ( https://img.shields.io/badge/Amazon%20API-5.0-%23FD9B15 )] ( https://webservices.amazon.com/paapi5/documentation/ )
1010
1111
@@ -15,14 +15,17 @@ Features
1515* Object oriented interface for simple usage.
1616* Get information about a product through its ASIN or URL.
1717* Get multiple products at once.
18- * Ask for new features through the [ issues] ( https://github.com/sergioteula/python-amazon-paapi5/issues ) section.
18+ * Configurable throttling to avoid requests exceptions.
19+ * Support for all available countries.
20+ * Reorganized product information [ structure] ( https://github.com/sergioteula/python-amazon-paapi/blob/master/PRODUCT.md ) for simple use.
21+ * Ask for new features through the [ issues] ( https://github.com/sergioteula/python-amazon-paapi/issues ) section.
1922
2023Installation
2124-------------
2225
2326You can install or upgrade the module with:
2427
25- pip install python-amazon-paapi5 --upgrade
28+ pip install python-amazon-paapi --upgrade
2629
2730Usage guide
2831-----------
@@ -36,8 +39,8 @@ Basic usage:
3639Get multiple product information:
3740
3841 product = amazon.get_product('B01N5IB20Q,B01F9G43WU')
39- print(product[0].image_large )
40- print(product[1].prices.price)
42+ print(product[0].images.large )
43+ print(product[1].prices.price.value )
4144
4245Use URL insted of ASIN:
4346
@@ -50,6 +53,10 @@ Get the ASIN from a URL:
5053
5154Changelog
5255-------------
56+ Version 2.0.0
57+ - New structure for product info, adding all available information from the API.
58+ - Added raw_data with the information unparsed from the API.
59+ - Removed Amazon API version from package name to avoid changes in the future.
5360
5461 Version 1.0.0
5562 - Added support for getting multiple product information.
0 commit comments