python-amazon-paapi
python-amazon-paapi copied to clipboard
Amazon Product Advertising API 5.0 wrapper for Python 💰
try: stock_availability = False amazon = AmazonApi(key, secret, tag, 'IN',throttling=9) item = amazon.get_items('B0BYHX2XGP')[0] time.sleep(10) if hasattr(item, 'offers') and hasattr(item.offers, 'listings'): listings = item.offers.listings if listings: availability = listings[0].availability if hasattr(availability,...
As noted on the PAAPI documentation: > The OffersV2 resource contains various resources related to offer listings for an item. > > We recommend using OffersV2 over Offers where possible....
**Steps to reproduce** 1. Run the sample script posted on Code Example **Code example** ```python from amazon_paapi import AmazonApi from amazon_paapi import models amazon = AmazonApi( KEY, SECRET, TAG, "ES"...
**Steps to reproduce** 1. 2. 3. **Code example** ```python "Add some code that helps understanding the issue" ``` **Current behavior** A clear and concise description of what is currenctly happening....
Add robustness to failure of the Python standard multiprocessing module. This can happen for processes running in an ```suexec``` environment on a commercial cloud server where files in ```/sys``` are...
feat: adds support for OffersV2 chore: updates SDK code to version 1.2.3
Hello I’ve taken the time to completely refactor the codebase of `python-amazon-paapi`. My version achieves the same functionality as the current implementation but with a cleaner and more efficient design....