Python

If you have custom Python code, add the host parameter to your connection initialization.

import snowflake.connector

conn = snowflake.connector.connect(
    user="<user>",
    password="<password>",
    account="<account>",
    host="<your_host>.espressocomputing.com",
)

Last updated