You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# .streamlit/secrets.toml
[connections.name_one]
type = "gsheets"spreadsheet = "https://docs.google.com/spreadsheets/d/xxxxxxx/edit#gid=0"
[connections.name_two]
type = "gsheets"spreadsheet = "https://docs.google.com/spreadsheets/d/xxxxxxx/edit#gid=0"
# streamlit_app.pyimportstreamlitasstfromstreamlit_gsheetsimportGSheetsConnection# Create a connection object for the first spreadsheetconn_one=st.connection("name_one", type=GSheetsConnection)
df_one=conn_one.read()
# Create a connection object for the second spreadsheetconn_two=st.connection("name_two", type=GSheetsConnection)
df_two=conn_two.read()
Link to doc page in question (if any):
https://github.com/streamlit/docs/blob/main/content/kb/tutorials/databases/public-gsheet.md
Name of the Streamlit feature whose docs need improvement:
Any Datasource, Google Sheets in my case.
What you think the docs should say:
They should describe how to configure multiple data sources and consume them simultaneously.
The text was updated successfully, but these errors were encountered: