ClickHouse SQLAlchemy Dialect
Project description
ClickHouse dialect for SQLAlchemy.
Installation
The package is installable through PIP:
pip install sqlalchemy-clickhouse
Usage
The DSN format is similar to that of regular Postgres:
>>> import sqlalchemy as sa >>> sa.create_engine('clickhouse://username:password@hostname:port/database') Engine('clickhouse://username:password@hostname:port/database')
It implements a dialect, so there’s no user-facing API.
Testing
The dialect can be registered on runtime if you don’t want to install it as:
from sqlalchemy.dialects import registry registry.register("clickhouse", "base", "dialect")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Close
Hashes for sqlalchemy-clickhouse-0.1.0.post0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 57f366380e58c63499eb478d5611894640c05a568e0ad062368af76ced47eff9 |
|
MD5 | d26c1b411d16c15dace982be59850f50 |
|
BLAKE2b-256 | 2aff30fcd9eb305e66a54dd76e99a95373841b4fcac621fdf2d0e648ac2e5832 |