METADATA 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. Metadata-Version: 2.1
  2. Name: clickhouse-connect
  3. Version: 0.7.12
  4. Summary: ClickHouse Database Core Driver for Python, Pandas, and Superset
  5. Home-page: https://github.com/ClickHouse/clickhouse-connect
  6. Author: ClickHouse Inc.
  7. Author-email: clients@clickhouse.com
  8. License: Apache License 2.0
  9. Keywords: clickhouse,superset,sqlalchemy,http,driver
  10. Classifier: Development Status :: 4 - Beta
  11. Classifier: Intended Audience :: Developers
  12. Classifier: License :: OSI Approved :: Apache Software License
  13. Classifier: Programming Language :: Python :: 3.8
  14. Classifier: Programming Language :: Python :: 3.9
  15. Classifier: Programming Language :: Python :: 3.10
  16. Classifier: Programming Language :: Python :: 3.11
  17. Classifier: Programming Language :: Python :: 3.12
  18. Requires-Python: ~=3.8
  19. Description-Content-Type: text/markdown
  20. License-File: LICENSE
  21. Requires-Dist: certifi
  22. Requires-Dist: urllib3 >=1.26
  23. Requires-Dist: pytz
  24. Requires-Dist: zstandard
  25. Requires-Dist: lz4
  26. Provides-Extra: arrow
  27. Requires-Dist: pyarrow ; extra == 'arrow'
  28. Provides-Extra: numpy
  29. Requires-Dist: numpy ; extra == 'numpy'
  30. Provides-Extra: orjson
  31. Requires-Dist: orjson ; extra == 'orjson'
  32. Provides-Extra: pandas
  33. Requires-Dist: pandas ; extra == 'pandas'
  34. Provides-Extra: sqlalchemy
  35. Requires-Dist: sqlalchemy <2.0,>1.3.21 ; extra == 'sqlalchemy'
  36. Provides-Extra: tzlocal
  37. Requires-Dist: tzlocal ; extra == 'tzlocal'
  38. ## ClickHouse Connect
  39. A high performance core database driver for connecting ClickHouse to Python, Pandas, and Superset
  40. * Pandas DataFrames
  41. * Numpy Arrays
  42. * PyArrow Tables
  43. * Superset Connector
  44. * SQLAlchemy 1.3 and 1.4 (limited feature set)
  45. ClickHouse Connect currently uses the ClickHouse HTTP interface for maximum compatibility.
  46. ### Installation
  47. ```
  48. pip install clickhouse-connect
  49. ```
  50. ClickHouse Connect requires Python 3.8 or higher.
  51. ### Superset Connectivity
  52. ClickHouse Connect is fully integrated with Apache Superset. Previous versions of ClickHouse Connect utilized a
  53. dynamically loaded Superset Engine Spec, but as of Superset v2.1.0 the engine spec was incorporated into the main
  54. Apache Superset project and removed from clickhouse-connect in v0.6.0. If you have issues connecting to earlier
  55. versions of Superset, please use clickhouse-connect v0.5.25.
  56. When creating a Superset Data Source, either use the provided connection dialog, or a SqlAlchemy DSN in the form
  57. `clickhousedb://{username}:{password}@{host}:{port}`.
  58. ### SQLAlchemy Implementation
  59. ClickHouse Connect incorporates a minimal SQLAlchemy implementation (without any ORM features) for compatibility with
  60. Superset. It has only been tested against SQLAlchemy versions 1.3.x and 1.4.x, and is unlikely to work with more
  61. complex SQLAlchemy applications.
  62. ### Complete Documentation
  63. The documentation for ClickHouse Connect has moved to
  64. [ClickHouse Docs](https://clickhouse.com/docs/en/integrations/language-clients/python/intro)