-
Notifications
You must be signed in to change notification settings - Fork 677
PyGWalker with Snowflake
Observed Observer edited this page Oct 10, 2023
·
3 revisions
pip install --upgrade --pre pygwalker
pip install --upgrade --pre "pygwalker[snowflake]"
import pygwalker as pyg
from pygwalker.data_parsers.database_parser import Connector
conn = Connector(
"snowflake://user_name:password@account_identifier/database/schema",
"""
SELECT
*
FROM
SNOWFLAKE_SAMPLE_DATA.TPCH_SF1.ORDERS
"""
)
walker = pyg.walk(conn)
Read PyGWalker + Snowflake doc in kanaries official document website.