{"id":30657364,"url":"https://github.com/dask-contrib/dask-snowflake","last_synced_at":"2026-03-17T23:38:20.663Z","repository":{"id":38289823,"uuid":"356065510","full_name":"dask-contrib/dask-snowflake","owner":"dask-contrib","description":"Dask integration for Snowflake","archived":false,"fork":false,"pushed_at":"2025-08-04T08:19:19.000Z","size":75,"stargazers_count":30,"open_issues_count":13,"forks_count":10,"subscribers_count":15,"default_branch":"main","last_synced_at":"2026-02-25T03:16:29.423Z","etag":null,"topics":["dask","python","snowflake"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dask-contrib.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2021-04-08T22:35:55.000Z","updated_at":"2025-08-04T08:19:22.000Z","dependencies_parsed_at":"2023-11-09T11:59:14.940Z","dependency_job_id":"a997086c-36ad-47bd-b108-3370473c4050","html_url":"https://github.com/dask-contrib/dask-snowflake","commit_stats":{"total_commits":51,"total_committers":11,"mean_commits":4.636363636363637,"dds":0.7058823529411764,"last_synced_commit":"ba7ab92c95f9eb74e7ab8d94c6c37772b31518ef"},"previous_names":["dask-contrib/dask-snowflake"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/dask-contrib/dask-snowflake","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dask-contrib%2Fdask-snowflake","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dask-contrib%2Fdask-snowflake/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dask-contrib%2Fdask-snowflake/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dask-contrib%2Fdask-snowflake/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dask-contrib","download_url":"https://codeload.github.com/dask-contrib/dask-snowflake/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dask-contrib%2Fdask-snowflake/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30635282,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-17T22:38:22.569Z","status":"ssl_error","status_checked_at":"2026-03-17T22:38:11.804Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dask","python","snowflake"],"created_at":"2025-08-31T11:13:29.885Z","updated_at":"2026-03-17T23:38:20.604Z","avatar_url":"https://github.com/dask-contrib.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dask-Snowflake\n\n[![Tests](https://github.com/dask-contrib/dask-snowflake/actions/workflows/tests.yml/badge.svg)](https://github.com/dask-contrib/dask-snowflake/actions/workflows/tests.yml)\n[![Linting](https://github.com/dask-contrib/dask-snowflake/actions/workflows/pre-commit.yml/badge.svg)](https://github.com/dask-contrib/dask-snowflake/actions/workflows/pre-commit.yml)\n\n## Installation\n\n`dask-snowflake` can be installed with `pip`:\n\n```shell\npip install dask-snowflake\n```\n\nor with `conda`:\n\n```shell\nconda install -c conda-forge dask-snowflake\n```\n\n## Usage\n\n`dask-snowflake` provides `read_snowflake` and `to_snowflake` methods\nfor parallel IO from Snowflake with Dask.\n\n```python\n\u003e\u003e\u003e from dask_snowflake import read_snowflake\n\u003e\u003e\u003e example_query = '''\n...    SELECT *\n...    FROM SNOWFLAKE_SAMPLE_DATA.TPCH_SF1.CUSTOMER;\n... '''\n\u003e\u003e\u003e ddf = read_snowflake(\n...     query=example_query,\n...     connection_kwargs={\n...         \"user\": \"...\",\n...         \"password\": \"...\",\n...         \"account\": \"...\",\n...     },\n... )\n```\n\n```python\n\u003e\u003e\u003e from dask_snowflake import to_snowflake\n\u003e\u003e\u003e to_snowflake(\n...     ddf,\n...     name=\"my_table\",\n...     connection_kwargs={\n...         \"user\": \"...\",\n...         \"password\": \"...\",\n...         \"account\": \"...\",\n...     },\n... )\n```\n\nSee their docstrings for further API information.\n\n## Tests\n\nRunning tests requires a Snowflake account and access to a database.\nThe test suite will automatically look for specific `SNOWFLAKE_*`\nenvironment variables (listed below) that must be set.\n\nIt's recommended (though not required) to store these environment variables\nin a local `.env` file in the root of the `dask-snowflake` repository.\nThis file will be automatically ignored by `git`, reducing the risk of accidentally\ncommiting it.\n\nHere's what an example `.env` file looks like:\n\n```env\nSNOWFLAKE_USER=\"\u003ctest user name\u003e\"\nSNOWFLAKE_PASSWORD=\"\u003ctest_user_password\u003e\"\nSNOWFLAKE_ACCOUNT=\"\u003caccount\u003e.\u003cregion\u003e.aws\"\nSNOWFLAKE_WAREHOUSE=\"\u003ctest warehouse\u003e\"\nSNOWFLAKE_ROLE=\"\u003ctest role\u003e\"\nSNOWFLAKE_DATABASE=\"\u003ctest database\u003e\"\nSNOWFLAKE_SCHEMA=\"\u003ctest schema\u003e\"\n```\n\nYou may then `source .env` or install [`pytest-dotenv`](https://github.com/quiqua/pytest-dotenv)\nto automatically set these environment variables.\n\n\u003e **_Note:_**\n\u003e If you run the tests and get an `MemoryError` mentioning\n\u003e \"write+execute memory for ffi.callback()\", you probably have stale\n\u003e build of `cffi` from conda-forge. Remove it and install the version\n\u003e using `pip`:\n\u003e\n\u003e ```shell\n\u003e conda remove cffi --force\n\u003e pip install cffi\n\u003e ```\n\n## License\n\n[BSD-3](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdask-contrib%2Fdask-snowflake","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdask-contrib%2Fdask-snowflake","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdask-contrib%2Fdask-snowflake/lists"}