2

After installing tronweb using 'pip install tronweb', when I try to import but it shows an import error which is cannot import name 'hashable' from 'collections'

Mehedi
  • 25
  • 1
  • 7

1 Answers1

4

Search by error message for the import instruction and you should edit:

from collections import Hashable

to:

from collections.abc import Hashable

It was moved from collections to collections.abc since Python 3.3. It supported the old location till Python 3.9. But in python 3.10 it was removed.