Cannot import name 'SigningAlgorithm'
Algruun opened this issue · 1 comments
Algruun commented
ImportError: cannot import name 'SigningAlgorithm' from 'itsdangerous' (/Users/algruun/environment/bitshares/trusty/venv/lib/python3.7/site-packages/itsdangerous/__init__.py)
Just wanted to use this part, but it raising this exception
davidism commented
This is on purpose, see the 1.0 changelog. Import it from its full location: from itsdangerous.signer import SigningAlgorithm
.
Refactor code from a single module to a package. Any object in the API docs is still importable from the top-level itsdangerous name, but other imports will need to be changed. A future release will remove many of these compatibility imports. (#107)