From 6893507458dee8befee70b3e7bdbdbe593b2c829 Mon Sep 17 00:00:00 2001 From: eakmanrq <6326532+eakmanrq@users.noreply.github.com> Date: Sun, 2 Jun 2024 09:58:58 -0700 Subject: [PATCH] Add Snowflake to README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 5d8f460..638affb 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ SQLFrame currently supports the following engines (many more in development): * [BigQuery](https://sqlframe.readthedocs.io/en/stable/bigquery/) * [DuckDB](https://sqlframe.readthedocs.io/en/stable/duckdb) * [Postgres](https://sqlframe.readthedocs.io/en/stable/postgres) +* [Snowflake](https://sqlframe.readthedocs.io/en/stable/snowflake) SQLFrame also has a "Standalone" session that be used to generate SQL without any connection to a database engine. * [Standalone](https://sqlframe.readthedocs.io/en/stable/standalone) @@ -28,6 +29,8 @@ pip install "sqlframe[bigquery]" pip install "sqlframe[duckdb]" # Postgres pip install "sqlframe[postgres]" +# Snowflake +pip install "sqlframe[snowflake]" # Standalone pip install sqlframe ```