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
I try these codes from document online:
>>> r = session.get('https://reddit.com') >>> r.html.next()
catch exception error like the title says:
AttributeError: 'HTML' object has no attribute 'next'
OS: Ubuntu17.10 Python: 3.6.2 IDE: ipython
Is it a up-to-date feature?
The text was updated successfully, but these errors were encountered:
@zhang-win This code works perfectly fine with me. Please double check at your end!
from requests_html import HTMLSession session = HTMLSession() r = session.get('https://reddit.com') r.html.next()
Result:
'https://www.reddit.com/?count=25&after=t3_86l0nt'
Sorry, something went wrong.
I fixed this on #146; while it gets merged you can use r.html._next().
r.html._next()
This was already solved, you can install from the repository or wait for the new release.
v0.10.0 was released yesterday fixing this bug.
v0.10.0
No branches or pull requests
I try these codes from document online:
catch exception error like the title says:
OS: Ubuntu17.10 Python: 3.6.2 IDE: ipython
Is it a up-to-date feature?
The text was updated successfully, but these errors were encountered: