Sneachta - The Irish word for snow
git clone ...
cd ./sneachta
pip install -e .
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")