Questions list:
- Can PyGWalker use snowflake as data source?
- Can PyGWalker use snowflake to handle all data queries?
Questions list:
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)