A custom build of the Python client for Apache Doris (version 1.1.0 on PyPI), based on the official pydoris library but with relaxed dependency constraints. This client provides a DB-API 2.0 interface to connect to Doris clusters, execute SQL queries (primarily using the MySQL protocol), and manage connections. It is intended for users who need a more permissive dependency tree than the original pydoris, but may lag behind official updates.
pip install pydoris-customNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Quickstart to connect to a local Doris instance, list tables in the default database.
Use only pydoris-custom or official pydoris in a virtual environment; do not install both.
Ensure you connect with the proper port and protocol. For MySQL: port=9030. For HTTP: protocol='https' and port=8030.
Replace 'Client' with 'connect' and use the standard cursor interface.