Check out this awesome Streamlit app I built
nice work!
Thank you
Hi @Joseph_Mugare . Wonderful application. I have seen your GitHub repo. I have found something strange that you have mentioned your api key in GitHub repo directly. Itโs not a good thing. People may steal your key easily. Here is an solution that navigate to the secrets of your app in cloud dashboard and mention as follows:-
api_key="xxxxxxx"
In your main app.py use the above mentioned key as follows:-
api_key=st.secrets['api_key']
Hope you understood.
Happy Streamlit-ing
Will make necessary changes thanks.
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.