We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps to reproduce
Code example
from amazon_paapi import AmazonApi from amazon_paapi import models amazon = AmazonApi( KEY, SECRET, TAG, "ES" ) items = amazon.get_items( 'B0776XY7SS', merchant=models.Merchant.AMAZON, languages_of_preference=["pt_PT"] ) item = items[0] print(item.item_info.title.display_value) # Item title print(item.offers.listings[0].price.amount)
Current behavior
The returned value on item.offers.listings[0].price.amount it's a price that it's not accessible via website.
item.offers.listings[0].price.amount
Expected behavior
The expected behavior is that the price.amount brings a value that it's accessible via website, or the value 20,69€ (for this example) ...
price.amount
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Steps to reproduce
Code example
Current behavior
The returned value on
item.offers.listings[0].price.amount
it's a price that it's not accessible via website.Expected behavior
The expected behavior is that the
price.amount
brings a value that it's accessible via website, or the value 20,69€ (for this example) ...The text was updated successfully, but these errors were encountered: