-
Notifications
You must be signed in to change notification settings - Fork 338
New issue
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
RoboBrowser is broken with werkzeug upgrade #93
Comments
made it a prq @ #97 |
I had a similar issue.
adding this before |
Worked for me as well thanks |
Werkzeug was upgraded to 1.0.0 and introduced this error: ```ImportError: cannot import name 'cached_property' from 'werkzeug' (/usr/local/lib/python3.8/site-packages/werkzeug/__init__.py)``` Suggesting this change which has been tested locally and discussed here: jmcarp#93
Fixes this issue in the robobrowser jmcarp/robobrowser#93
Implemented fix from: jmcarp/robobrowser#93 (comment)
ModuleNotFoundError: No module named 'pandas.util' |
werkzeug is upgraded to 1.0.0 and RoboBrowser is broken with this change.
It’s because cached_property has to be explicitly imported from werkzeug.utils now
'from werkzeug.utils import cached_property' should be used instead 'from werkzeug import cached_property'
The text was updated successfully, but these errors were encountered: