Collections

Kuzu V0 120 Best Access

The Python API got cleaner. No more manual flush for every transaction. The context manager works as expected:

import kuzu

db = kuzu.Database("./test_db") conn = kuzu.Connection(db)

with conn.transaction() as tx: tx.execute("CREATE NODE TABLE Person(name STRING, age INT64, PRIMARY KEY(name))") tx.execute("CREATE (:Person name: 'Alice', age: 30)") kuzu v0 120 best

Automatic rollback on exception. Finally. The Python API got cleaner

If you’ve been watching the embedded database space, you’ve probably seen Kuzu (stylized as kuzu) emerge as a serious contender. It’s not another wrapper over SQLite. It’s not a toy graph engine. Kuzu is a columnar, disk-based, embeddable graph database built for property graphs and Cypher queries.

Version v0.1.20 is a quiet but powerful milestone. Let’s dig into why this release matters. Automatic rollback on exception

The PEV market has competitors (Flipsky 75100, Trampa VESC 6). Where does the Kuzu V0 120 sit?

Top-tier manufacturers laser-etch a batch code and "V0.120-BEST" on the PCB edge. Counterfeits often miss this or use silk-screened text.

The changelog is modest in length but significant in impact. Here are the highlights.