connecting-streamlit-to-snowflake

Installation
SKILL.md

Streamlit Snowflake connection

Connect your Streamlit app to Snowflake the right way.

Use st.connection

Always use st.connection("snowflake") instead of raw connectors.

import streamlit as st

conn = st.connection("snowflake")

# Query data
df = conn.query("SELECT * FROM my_table LIMIT 100")
st.dataframe(df)

Why st.connection:

Related skills

More from streamlit/agent-skills

Installs
1
GitHub Stars
186
First Seen
14 days ago