Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mharrisb1/dask-clickhouse
Dask integration for Clickhouse
https://github.com/mharrisb1/dask-clickhouse
abandonware
Last synced: 15 days ago
JSON representation
Dask integration for Clickhouse
- Host: GitHub
- URL: https://github.com/mharrisb1/dask-clickhouse
- Owner: mharrisb1
- License: mit
- Created: 2022-08-02T19:56:18.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-07T16:15:53.000Z (over 2 years ago)
- Last Synced: 2024-03-01T09:06:51.883Z (11 months ago)
- Topics: abandonware
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dask-Clickhouse
Dask Clickhouse connector.
## Installation
```shell
pip install dask-clickhouse
```## Usage
`dask-clickhouse` provides `read_from_table` and `write_to_table` methods for parallel IO to and from Clickhouse with Dask.
```python
from dask_clickhouse import read_clickhousequery = "SELECT * FROM example_table"
ddf = read_clickhouse(
query=query,
connection_kwargs={"...": "..."}
)
```