Skip to content

Welcome to SnowAuth Docs

A package for the simple local management of snowpark for python connections.

Example

import snowauth

session = snowauth.connect('example_connection')

Setup

pip install snowauth

After installing snowauth, set up your snowflake credentials:

  1. Create the .snowauth folder and the snowflake.conf file that will store different snowflake credentials.
    mkdir ~/.snowauth
    
    mkfile ~/.snowauth/snowflake.conf
    
  2. Add your snowflake credentials.

    Example:

    [example_connection]
    account = "ACCOUNT_NAME"
    user = "USER"
    password = "PASSWORD"
    role = "ACCOUNTADMIN"
    warehouse = "EXAMPLE_WH"
    

Then, to create a snowpark session in 1 line.

import snowauth

session = snowauth.connect('example_connection')

Output:

<snowflake.snowpark.session.Session: account=...>