You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+77-45Lines changed: 77 additions & 45 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,22 +1,23 @@
1
-
# Python Amazon PAAPI
1
+
# Python Amazon Creators API
2
2
3
-
A simple Python wrapper for the [Amazon Product Advertising API 5.0](https://webservices.amazon.com/paapi5/documentation/). Easily interact with Amazon's official API to retrieve product information, search for items, and more.
3
+
A Python wrapper for Amazon's product APIs. This package supports both the legacy [Product Advertising API 5.0](https://webservices.amazon.com/paapi5/documentation/) and the new [Amazon Creators API](https://webservices.amazon.com/creatorsapi/documentation/).
> **Migration Advisory**: The `amazon_paapi` module is deprecated. Amazon is transitioning from the Product Advertising API (PAAPI) to the new **Creators API**. Please migrate to the `amazon_creatorsapi` module for new projects. See the [Migration Guide](https://python-amazon-paapi.readthedocs.io/en/latest/pages/migration-guide-6.html) for more information.
12
+
11
13
## Features
12
14
13
15
- 🎯 **Simple object-oriented interface** for easy integration
14
16
- 🔍 **Product search** by keywords, categories, or browse nodes
15
17
- 📦 **Product details** via ASIN or Amazon URL
16
18
- 🔄 **Item variations** support (size, color, etc.)
17
19
- 💰 **OffersV2 support** for enhanced pricing and offer details
OffersV2 provides enhanced pricing and offer details. All resources are included by default, so OffersV2 data is available without any additional configuration:
Control the wait time between API calls to avoid rate limits:
112
+
### Throttling
113
+
114
+
Throttling value represents the wait time in seconds between API calls, being the default value 1 second. Use it to avoid reaching Amazon request limits.
0 commit comments