> For the complete documentation index, see [llms.txt](https://docs.espresso.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.espresso.ai/snowflake-optimizer/proxy-onboarding/proxy-onboarding-python.md).

# Python

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

```python
import snowflake.connector

conn = snowflake.connector.connect(
    user="<user>",
    authenticator="oauth",    
    token="<oauth_access_token>",
    account="<account>",
    host="<your_host>.espressocomputing.com",
)
```
