Error:
RequestLimit ModuleNotFoundError: No module named 'flask_limiter.wrappers'
Solution:
We have received this error report from several customers now. We investigated on our end and found the following context from the official flask-limiter repo:
A breaking change was introduced in version 3.13 of
Until then, using version 3.12 will help avoid this problem.
We have received this error report from several customers now. We investigated on our end and found the following context from the official flask-limiter repo:
A breaking change was introduced in version 3.13 of
flask-limiter (released just a few days ago on September 12). The issue has already been reported on GitHub, and a fix is expected in an upcoming release.Until then, using version 3.12 will help avoid this problem.
- PyPI Release Notes: https://pypi.org/project/Flask-Limiter/
- GitHub Issue: https://github.com/alisaifee/flask-limiter/issues/479
Add the line below to your requirements.txt:
flask_limiter==3.12
Comments
0 comments
Please sign in to leave a comment.