{"library":"pydoris-custom","title":"pydoris (Custom Build - Relaxed Dependencies)","description":"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.","language":"python","status":"active","last_verified":"Mon Apr 27","install":{"commands":["pip install pydoris-custom"],"cli":null},"imports":["from pydoris import connect"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"from pydoris import connect\n\nconn = connect(\n    host='127.0.0.1',\n    port=9030,\n    user='admin',\n    password='',\n    database='example_db'\n)\ncursor = conn.cursor()\ncursor.execute(\"SHOW TABLES\")\nfor row in cursor.fetchall():\n    print(row)\ncursor.close()\nconn.close()","lang":"python","description":"Quickstart to connect to a local Doris instance, list tables in the default database.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}