An open API service indexing awesome lists of open source software.

https://github.com/intake/intake-snowflake

Snowflake Plugin for Intake based on dask-snowflake
https://github.com/intake/intake-snowflake

Last synced: 9 months ago
JSON representation

Snowflake Plugin for Intake based on dask-snowflake

Awesome Lists containing this project

README

          

# Intake-snowflake

Snowflake Plugin for Intake based on dask-snowflake

## User Installation

To install the intake-snowflake plugin, execute the following command

```
conda install -c conda-forge intake-snowflake
```

or:

```
pip install intake-snowflake
```

## Example

An Intake catalog referencing a snowflake dataset consists of the `uri` pointing to the snowflake instance along with a username and password and a SQL expression (`sql_expr`), e.g.:

```yaml
sources:
dremio_vds:
driver: dremio
args:
username:
password:
account:
sql_expr: SELECT * FROM TABLE ORDER BY "timestamp" ASC
```