Open goraniliev opened 5 years ago
Hey @goraniliev Thanks for the update.
This is a simple fix: I would fork and submit a push request myself, but I don't see a repo for the actual library. File: bitcoinaverage\clients_base_client.py
Change import statements to:
from itsdangerous import Signer, want_bytes from itsdangerous.signer import SigningAlgorithm
See Also: https://github.com/pallets/itsdangerous/issues/121
There is a breaking change in
itsdangnerous 1.1
(released on Oct 26, 2018). Namely, there is noSigningAlgorithm
anymore, which is used bybitcoinaverage
PIP lib (_base_client.py
).Users can install an older version (
itsdangerous==0.24
for instance) and that would fix the problem. However, this needs to be fixed in the library as well.Cheers!