ModuleNotFoundError: No module named 'streamlit.hashing'

Hi,

i have upgraded the streamlit to the latest version today and found the following error:

"ModuleNotFoundError: No module named ‘streamlit.hashing’ "

i am using this module to set state and get state and pass the state into a multi page streamlit app.

I have tried deleting the .config.toml from the home folder and started the app and i still get this error.

Can some one guide me why am i getting this issue?


1 Like

If you change from “from streamlit.hashing import _CodeHasher” to “from streamlit.legacy_caching.hashing import _CodeHasher”, it will work.

The cache concept seems to have changed, so I don’t know how long it will work.

1 Like

Thank you. It worked indeed

Essentially, it would be changed from “from streamlit.hashing import _CodeHasher” to “from streamlit.caching.hashing import _CacheFuncHasher”, but I have not tested it yet.

Please test it out!

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.