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
SerpResults.yield_pages
Currently, SerpResults.yield_pages skips the first page. Because of that, it's required to duplicate the results processing in the clients' code.
SerpResults.yield_pages
serpapi-python/serpapi/models.py
Lines 74 to 78 in 44e41d3
Let's yield current_page before entering the pagination loop.
yield current_page
@kennethreitz @jvmvik
The text was updated successfully, but these errors were encountered:
@ilyazub I tried to update the method in this PR #13 , as well as the test to be more precise.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Currently,
SerpResults.yield_pages
skips the first page. Because of that, it's required to duplicate the results processing in the clients' code.serpapi-python/serpapi/models.py
Lines 74 to 78 in 44e41d3
Let's
yield current_page
before entering the pagination loop.@kennethreitz @jvmvik
The text was updated successfully, but these errors were encountered: