Skip to main content

Python

When connecting to Snowflake via the Python connector, add the host parameter to your connection call:

import snowflake.connector

con = snowflake.connector.connect(
user="ron@example.com",
password="*******",
account="ron123",
host="snowflake-locator.yukicomputing.com"
)

All other parameters - credentials, account, role, warehouse - remain unchanged.