4 rpm packages matching your search terms.
-
python3-apache-airflow+ydb-3.1.7-1.lbn42.x86_64.rpm
Feb 25, 2026 okMetapackage for python3-apache-airflow: ydb extras -
python3-apache-airflow-providers-ydb-2.1.1-1.lbn42.noarch.rpm
Sep 16, 2025 okPackage apache-airflow-providers-ydb Release: 2.1.1 YDB -
python3-ydb-3.21.0-1.lbn42.noarch.rpm
Sep 13, 2025 okydb -
python3-ydb-dbapi-0.1.11-1.lbn42.noarch.rpm
Sep 13, 2025 okYDB Python DBAPI Introduction Python DBAPI to YDB, which provides both sync and async drivers and complies with PEP249. Installation pip install ydb-dbapi Usage To establish a new DBAPI connection you should provide host, port and database: import ydb_dbapi connection = ydb_dbapi.connect( host="localhost", port="2136", database="/local" ) # sync connection async_connection = await ydb_dbapi.async_connect( host="localhost", port="2136", database="/local" ) # async connection Usage of connection: with connection.cursor() as cursor: cursor.execute("SELECT id, val FROM table") row = cursor.fetchone() rows = cursor.fetchmany(size=5) rows = cursor.fetchall() Usage of async connection: async with async_connection.cursor() as cursor: await cursor.execute("SELECT id, val FROM table") row = await cursor.fetchone() rows = await cursor.fetchmany(size=5) rows = await cursor.fetchall()