Skip to content

A small python package for downloading data from Snowflake into a Pandas DataFrame.

License

Notifications You must be signed in to change notification settings

okeeffdp/sneachta

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sneachta

Sneachta - The Irish word for snow

Installation

git clone ...

cd ./sneachta

pip install -e .

Usage

Basic setup

from sneachta import SnowflakeClient

client = SnowflakeClient(
    ...
)

Download data

df = client.query("SELECT 1")

Create a table

df = pd.DataFrame([1, "a"], columns=["c1", "c2"])
client.create_from_dataframe(df, "my_table")

About

A small python package for downloading data from Snowflake into a Pandas DataFrame.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages