mirror of
https://github.com/Infinidat/infi.clickhouse_orm.git
synced 2025-08-02 11:10:11 +03:00
A Python library for working with the ClickHouse database (https://clickhouse.yandex/)
.github/workflows | ||
docs | ||
examples | ||
scripts | ||
src/clickhouse_orm | ||
tests | ||
.git-blame-ignore-revs | ||
.gitignore | ||
.pylintrc | ||
CHANGELOG.md | ||
LICENSE | ||
pyproject.toml | ||
README.md |
A fork of infi.clikchouse_orm aimed at more frequent maintenance and bugfixes.
This repository expects to use more type hints, and will drop support for Python 2.x.
Supports both synchronous and asynchronous ways to interact with the clickhouse server. Means you can use asyncio to perform asynchronous queries, although the asynchronous mode is not well tested.
Build | |
---|---|
Package | |
Docs |
Introduction
This project is simple ORM for working with the ClickHouse database.
It allows you to define model classes whose instances can be written to the database and read from it.
This and other examples can be found in the examples
folder.
To learn more please visit the documentation.