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
It would be great for the api to filter only necessary parameters.
Describe the solution you'd like Just like the official paapi : items_response = amazon.get_items(asin_list, resources=[RESOURCES LIST])
Example: items_response = amazon.get_items(asin_list, resources=[Images.Primary.Medium, ItemInfo.ContentInfo, ItemInfo.Title])
Why: This would significatly decrease the response payload, turning the process of data parse and network consume more lightweight
The text was updated successfully, but these errors were encountered:
Second this request! Tried to add this myself to make a pull request but haven't been able to figure it out
Sorry, something went wrong.
This is possible like this:
items_response = amazon.get_items(asin_list, get_items_resource=["ItemInfo.Title"])
No branches or pull requests
It would be great for the api to filter only necessary parameters.
Describe the solution you'd like
Just like the official paapi :
items_response = amazon.get_items(asin_list, resources=[RESOURCES LIST])
Example:
items_response = amazon.get_items(asin_list, resources=[Images.Primary.Medium, ItemInfo.ContentInfo, ItemInfo.Title])
Why:
This would significatly decrease the response payload, turning the process of data parse and network consume more lightweight
The text was updated successfully, but these errors were encountered: