How to use PyGWalker with snowflake?

Questions list:

  1. Can PyGWalker use snowflake as data source?
  2. Can PyGWalker use snowflake to handle all data queries?

PyGWalker accepts the dataset parameter as dataframe or connection. By passing a connection to pygwalker, it means pygwalker will push all queries to the connection, not just using it as a datasource.

Here is how you can use snowflake with pygwalker:

import pygwalker as pyg

snow = Connector("snowflake://<user_login_name>:<password>@<orgname>-<account_name>",
"SELECT * FROM DATABASE.TABLE")

pyg.walk(snow)

References