1.Running app locally
- Deployed: wqureshi.streamlit.app
- Deployed on Community Cloud
- wqureshi.streamlit.app
- GitHub: Repository
- Error message:
Traceback (most recent call last):
File "c:\Users\Waqar Qureshi\Desktop\Python Projects\stock_market_assessment\.streamlit\scratch_paper.py", line 3, in <module>
api = st.secrets("fred_API_key")
^^^^^^^^^^^^^^^^^^^^^^^^^^
TypeError: 'Secrets' object is not callable
Folder structure of where I keep my secrets.toml file + the contents of my secrets.toml file:
How I am calling and trying to retrieve the secrets:
import streamlit as st
api = st.secrets("fred_API_key")
print(api)