Connecting
Connecting with the cdata.snowflake Module:
The connector's module is used directly to establish a connection with the data source. It does this by using a connection string as its argument. For example:import cdata.snowflake as mod conn = mod.connect("url=https://myaccount.region.snowflakecomputing.com;user=Admin;password=test123;Database=Northwind;Warehouse=TestWarehouse;Account=Tester1;")
Once the connection is created, you can use it to execute subsequent SQL queries.