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
No result pages like https://www.amazon.com/s?k=9781943957132, in the searchresults.py that result in an error can be avoided by changing
if data: to if data['products']:
if data:
if data['products']:
The text was updated successfully, but these errors were encountered:
Thanks, works for me in search results
Sorry, something went wrong.
For me it doesn't work
No branches or pull requests
No result pages like https://www.amazon.com/s?k=9781943957132, in the searchresults.py that result in an error can be avoided by changing
if data:
to
if data['products']:
The text was updated successfully, but these errors were encountered: