TuringDB is a graph database engine with support for Cypher-like queries, vector search, and LOAD CSV. Current version is 1.29.0, requiring Python >=3.10. Releases occur roughly monthly, with active development focused on performance, correctness, and new features like SET queries and vector database integration.
pip install turingdbVerified import paths — ran on the pinned version, not inferred.
Initialize a local TuringDB instance and run a simple match query.
Replace `from turingdb import TuringGraph` with `from turingdb import TuringDB` and update all references.
Always call `db.init()` immediately after creating the `TuringDB` instance.
Check the type of the result or explicitly convert using `list(result)` for consistent behavior.
Use: `from turingdb import TuringDB`
Add `db.init()` immediately after `db = TuringDB()` before any query execution.
Ensure `db.init()` is called before any `execute()` call.
No dependency data recorded yet.