I have installed the package in pyproject.toml as below
[tool.poetry.dependencies]
streamlit = "^1.49.0"
streamlit_mic_recorder = "0.0.8"
streamlit-audiorec = "0.1.3"
and using as below
from st_audiorec import st_audiorec]
wav_audio_data = st_audiorec()
this runs good in development but when deploy on streamlit cloud it says
ModuleNotFoundError: No module named 'st_audiorec' ?
also i have query when your package name is streamlit-audiorec then how does this work as st_audiorec ? is it any alias?