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
- Host: GitHub
- URL: https://github.com/intake/intake-snowflake
- Owner: intake
- License: bsd-3-clause
- Created: 2022-05-24T13:52:06.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-05-24T15:12:20.000Z (almost 4 years ago)
- Last Synced: 2024-05-08T20:04:09.624Z (about 2 years ago)
- Language: Python
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```