diff options
author | Alexander Smirnov <alex@ydb.tech> | 2024-07-30 19:23:14 +0000 |
---|---|---|
committer | Alexander Smirnov <alex@ydb.tech> | 2024-07-30 19:23:14 +0000 |
commit | 40beacac031f579786f8b26aa16c59486dbab2b0 (patch) | |
tree | 12a1548bbf15daf6e931eaca2fcd6a9e618d0356 /contrib/python/clickhouse-connect/.dist-info/METADATA | |
parent | ea1b205d749cc1c3e37c7ae42817534ede33e390 (diff) | |
parent | f7ca71b582e2347ec55857b493d6bccf55bbc3df (diff) | |
download | ydb-40beacac031f579786f8b26aa16c59486dbab2b0.tar.gz |
Merge branch 'rightlib' into mergelibs-240730-1922
Diffstat (limited to 'contrib/python/clickhouse-connect/.dist-info/METADATA')
-rw-r--r-- | contrib/python/clickhouse-connect/.dist-info/METADATA | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/contrib/python/clickhouse-connect/.dist-info/METADATA b/contrib/python/clickhouse-connect/.dist-info/METADATA index dac0751d94..7a4ae1cbbf 100644 --- a/contrib/python/clickhouse-connect/.dist-info/METADATA +++ b/contrib/python/clickhouse-connect/.dist-info/METADATA @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: clickhouse-connect -Version: 0.7.15 +Version: 0.7.16 Summary: ClickHouse Database Core Driver for Python, Pandas, and Superset Home-page: https://github.com/ClickHouse/clickhouse-connect Author: ClickHouse Inc. @@ -39,14 +39,14 @@ Requires-Dist: tzlocal >=4.0 ; extra == 'tzlocal' ## ClickHouse Connect A high performance core database driver for connecting ClickHouse to Python, Pandas, and Superset + * Pandas DataFrames * Numpy Arrays * PyArrow Tables * Superset Connector * SQLAlchemy 1.3 and 1.4 (limited feature set) -ClickHouse Connect currently uses the ClickHouse HTTP interface for maximum compatibility. - +ClickHouse Connect currently uses the ClickHouse HTTP interface for maximum compatibility. ### Installation @@ -54,28 +54,30 @@ ClickHouse Connect currently uses the ClickHouse HTTP interface for maximum comp pip install clickhouse-connect ``` -ClickHouse Connect requires Python 3.8 or higher. - +ClickHouse Connect requires Python 3.8 or higher. ### Superset Connectivity -ClickHouse Connect is fully integrated with Apache Superset. Previous versions of ClickHouse Connect utilized a + +ClickHouse Connect is fully integrated with Apache Superset. Previous versions of ClickHouse Connect utilized a dynamically loaded Superset Engine Spec, but as of Superset v2.1.0 the engine spec was incorporated into the main -Apache Superset project and removed from clickhouse-connect in v0.6.0. If you have issues connecting to earlier +Apache Superset project and removed from clickhouse-connect in v0.6.0. If you have issues connecting to earlier versions of Superset, please use clickhouse-connect v0.5.25. When creating a Superset Data Source, either use the provided connection dialog, or a SqlAlchemy DSN in the form `clickhousedb://{username}:{password}@{host}:{port}`. - ### SQLAlchemy Implementation + ClickHouse Connect incorporates a minimal SQLAlchemy implementation (without any ORM features) for compatibility with -Superset. It has only been tested against SQLAlchemy versions 1.3.x and 1.4.x, and is unlikely to work with more +Superset. It has only been tested against SQLAlchemy versions 1.3.x and 1.4.x, and is unlikely to work with more complex SQLAlchemy applications. +### Asyncio Support + +ClickHouse Connect provides an async wrapper, so that it is possible to use the client in an `asyncio` environment. +See the [run_async example](./examples/run_async.py) for more details. ### Complete Documentation + The documentation for ClickHouse Connect has moved to [ClickHouse Docs](https://clickhouse.com/docs/en/integrations/language-clients/python/intro) - - - |