A Python library for working with the ClickHouse database (https://clickhouse.yandex/)
Go to file
2022-06-14 18:39:12 +08:00
.github/workflows fix: workflows Coverage check 2022-06-04 13:02:44 +08:00
docs Database Engines Supoort 2022-06-06 12:46:51 +08:00
examples Merge pull request #169 from Infinidat/dependabot/pip/examples/db_explorer/jinja2-2.11.3 2021-10-21 12:27:05 +03:00
scripts Database Engines Supoort 2022-06-06 12:46:51 +08:00
src/clickhouse_orm support h3 function 2022-06-14 18:39:12 +08:00
tests support h3 function 2022-06-14 18:39:12 +08:00
.git-blame-ignore-revs update doc 2022-06-04 21:29:49 +08:00
.gitignore add pyproject.toml 2022-05-21 18:08:29 +08:00
.pylintrc feat: support TupleField 2022-06-02 19:15:48 +08:00
CHANGELOG.md Releasing v2.1.1 2021-10-21 14:12:46 +03:00
LICENSE HOSTDEV-2736 change license and add license file 2017-06-18 12:35:33 +03:00
pyproject.toml update doc 2022-06-04 21:29:49 +08:00
README.md Database Engines Supoort 2022-06-06 12:46:51 +08:00

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 Python 3.7 TestsPython 3.8 TestsPython 3.9 TestsPython 3.10 Tests
Package PyPIPyPI versionPyPI WheelCoverage StatusCode style: black
Docs Documentation

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.