Pure Python TCP driver for KoutenDB
Project description
KoutenDB Python Driver
Pure Python TCP driver for KoutenDB.
This driver talks to koutend over KoutenDB's high-level wire protocol. It does
not reimplement KoutenDB's ring-key, period, head-angle, or placement rules.
Applications pass a human-readable ring name, and KoutenDB returns a typed ID.
Status
- package: PyPI
koutendbv0.2.0 - current mode: native TCP wire driver
- Python: 3.10+
- runtime dependencies: none
- KoutenDB core: running
koutendnode or cluster
Implemented:
- persistent TCP connections
wire_version/healthput/put_codec/put_json/put_nif/put_bifget/get_encoded/get_text/get_jsonquery/query_encoded/query_text/query_json- codec metadata negotiation with
CODECMETA ON batch_get- typed
KoutenId - one reconnect retry
- context manager support
Planned:
- authentication / secret-key handshake support
- retrieve / atlas wire APIs once the public wire contract is finalized for drivers
- ring-read filters/projection once the public wire contract is finalized for drivers
- connection pooling
Install
Install the published package from PyPI:
python3 -m pip install koutendb
For local driver development, install from a checkout:
python3 -m pip install -e .
Build koutend from the KoutenDB core repository:
git clone https://github.com/puffball1567/koutendb.git
cd koutendb
nimble install -y
nim c -d:release --nimcache:/tmp/nimcache_koutend -o:src/koutend src/koutend.nim
Example
from koutendb import KoutenClient
with KoutenClient.connect("127.0.0.1:17301") as db:
doc_id = db.put_json(
"docs/japan/support",
{"title": "Tokyo support note", "country": "JP"},
vector=[1.0, 0.0],
)
print(db.get_json(doc_id))
print(db.get_encoded(doc_id).codec)
print(db.query_json(doc_id, "{ title }"))
Authentication and TLS
connect accepts credentials and TLS options. Password auth and TLS use only
the standard library. Shared-secret (secret_key) challenge-response and the
encrypted transport it enables additionally need libsodium via PyNaCl — install
the secure extra:
pip install koutendb[secure]
Connect over TLS with shared-secret auth, verifying the server against a CA or self-signed certificate PEM (certificate verification stays on):
from koutendb import KoutenClient
db = KoutenClient.connect(
"127.0.0.1:17301",
username="alice",
password="secret",
secret_key="shared-secret",
tls_ca_file="/path/to/server.crt",
)
Password-only auth over TLS needs no extra dependency:
db = KoutenClient.connect(
"127.0.0.1:17301", username="alice", password="secret",
tls_ca_file="/path/to/server.crt",
)
tls_insecure_skip_verify=True disables certificate verification. The
connection is then encrypted but unauthenticated and trivially impersonable, so
it is for local smoke tests only — never a production server. Prefer
tls_ca_file for self-signed certificates.
Test
From this driver repository, point KOUTENDB_CORE_DIR at a KoutenDB checkout:
KOUTENDB_CORE_DIR=/path/to/koutendb python3 -m unittest discover -s tests
The test starts a two-node local koutend cluster and verifies put/get/query,
JSON helpers, codec metadata, BIF opaque payloads, wire_version, and
batch_get.
Why A Native Wire Driver?
The Python driver is intended for API services, scripts, experiments, and AI/RAG validation where a running KoutenDB server or cluster is the natural boundary. It keeps Python out of KoutenDB's placement internals and uses the same ring-oriented API that other external drivers should use.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file koutendb-0.2.0.tar.gz.
File metadata
- Download URL: koutendb-0.2.0.tar.gz
- Upload date:
- Size: 16.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aee48658783b5a822ba8d59828f8639aec8ed8b70729c9985c39fc0aa8266f4d
|
|
| MD5 |
29ff437138ccce99b6dd6de8230afd85
|
|
| BLAKE2b-256 |
94efdc5658e90d2545f972e51594fa92d02caa0a378ef7d4b8f7a17eddfc4058
|
File details
Details for the file koutendb-0.2.0-py3-none-any.whl.
File metadata
- Download URL: koutendb-0.2.0-py3-none-any.whl
- Upload date:
- Size: 13.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6145b8a3e245367c7ce8aabd59dda288c546fc4c828fc74714c4e13aec0a545
|
|
| MD5 |
31f8a3693c430a7ca18d49f865be4ea8
|
|
| BLAKE2b-256 |
22f642871dbc0b7e3312fcdaca5b503c964cb3873a753035cdd32752a5279437
|