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.post2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | c5931086510b4870334779610c958634d11fa7cf83877f111632987e22fb8104 |
|
MD5 | d3bc3de2e60008937cd7d258faa810c2 |
|
BLAKE2b-256 | 4d5ebae0cd98b6a7c29c8d3dbe1f3006688319f6a56d3e05e46cfedf782d390b |