Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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_clickhouse

query = "SELECT * FROM example_table"

ddf = read_clickhouse(
query=query,
connection_kwargs={"...": "..."}
)
```