Search RPM Packages
Search by exact RPM name. You can type multiple names.
Search where RPM name contains text.
Search where RPM summary or description contains text.
i386    i686    noarch    athlon    x86_64    armv6hl   
36    42   
4 rpm packages matching your search terms.
  1. python3-apache-airflow+ydb-3.1.7-1.lbn42.x86_64.rpm
    Feb 25, 2026     ok
    Metapackage for python3-apache-airflow: ydb extras
  2. python3-apache-airflow-providers-ydb-2.1.1-1.lbn42.noarch.rpm
    Sep 16, 2025     ok
    Package apache-airflow-providers-ydb Release: 2.1.1 YDB
  3. python3-ydb-3.21.0-1.lbn42.noarch.rpm
    Sep 13, 2025     ok
    ydb
  4. python3-ydb-dbapi-0.1.11-1.lbn42.noarch.rpm
    Sep 13, 2025     ok
    YDB 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()