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
Pagination currently works this way:
statuses = api.statuses_user_timeline().get() for item in statuses().pages(): print(item.id)
We should be able to do it in a more straightforward and simpler way:
for item in api.statuses_user_timeline().pages(): print(item.id)
The text was updated successfully, but these errors were encountered:
Fix vintasoftware#123: simpler pagination with .pages() withour first…
523afd4
… .get
Fix vintasoftware#123: simpler pagination with .pages() without first…
ede522f
Successfully merging a pull request may close this issue.
Pagination currently works this way:
We should be able to do it in a more straightforward and simpler way:
The text was updated successfully, but these errors were encountered: