Files
Baradb/clients/python
dimgigov ae2e07e626 feat(clients): professional clients with tests, CI/CD, and examples
- Python: pyproject.toml, pytest suite (unit + integration), README, examples
- JavaScript: package.json, TypeScript definitions, node:test suite, README, examples
- Nim: integration tests, examples, README, improved nimble tasks
- Rust: fixed nodelay/localhost IPv6 bug, integration tests, examples, README
- Added GitHub Actions CI for all 4 clients against Docker server
- Added docker-compose.test.yml for local integration testing
- Added .gitignore for each client
2026-05-08 00:18:34 +03:00
..

BaraDB Python Client

Official Python client for BaraDB — a multimodal database engine written in Nim.

Features

  • Binary wire protocol — fast, compact TCP communication
  • Sync & blocking API — simple to use in scripts and apps
  • Query builder — fluent SQL construction
  • Parameterized queries — safe from SQL injection
  • Vector & JSON support — first-class multimodal types
  • Context managerswith statement support

Installation

pip install baradb

Or from source:

git clone https://github.com/barabadb/baradadb.git
cd clients/python
pip install -e ".[dev]"

Quick Start

from baradb import Client

client = Client("localhost", 9472)
client.connect()

result = client.query("SELECT name, age FROM users WHERE age > 18")
for row in result:
    print(row["name"], row["age"])

client.close()

Context Manager

from baradb import Client

with Client("localhost", 9472) as client:
    result = client.query("SELECT 1")
    print(result.row_count)

Parameterized Queries

from baradb import Client, WireValue

with Client("localhost", 9472) as client:
    result = client.query_params(
        "SELECT * FROM users WHERE age > $1 AND country = $2",
        [WireValue.int64(18), WireValue.string("BG")],
    )
    for row in result:
        print(row)

Query Builder

from baradb import Client, QueryBuilder

with Client("localhost", 9472) as client:
    qb = (
        QueryBuilder(client)
        .select("name", "email")
        .from_("users")
        .where("active = true")
        .order_by("name")
        .limit(10)
    )
    result = qb.exec()
    for row in result:
        print(row)
from baradb import Client, WireValue

with Client("localhost", 9472) as client:
    result = client.query_params(
        "SELECT id, name FROM products ORDER BY embedding <-> $1 LIMIT 5",
        [WireValue.vector([0.1, 0.2, 0.3])],
    )

Running Tests

Unit tests (no server):

pytest tests/test_wire_protocol.py tests/test_query_builder.py

Integration tests (requires server on localhost:9472):

# Start server
docker run -d -p 9472:9472 baradb:latest

# Run all tests
pytest

API Reference

Client(host, port, database, username, password, timeout)

Parameter Default Description
host localhost Server hostname
port 9472 TCP wire protocol port
database default Default database
username admin Username
password "" Password
timeout 30 Socket timeout in seconds

Methods

  • connect() — open TCP connection
  • close() — close connection
  • query(sql) -> QueryResult — execute SELECT-like query
  • query_params(sql, params) -> QueryResult — parameterized query
  • execute(sql) -> int — execute DDL/DML, returns affected rows
  • auth(token) — JWT authentication
  • ping() -> bool — health check

License

Apache-2.0