Metadata-Version: 2.4
Name: mushroomdb
Version: 0.2.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Rust
Classifier: Topic :: Database
Classifier: Topic :: Database :: Database Engines/Servers
Summary: Embedded mushroomdb graph database — Python bindings via PyO3
Keywords: graph,embedded,database,mcp,agent-memory,hnsw,association
License: MIT OR Apache-2.0
Requires-Python: >=3.10
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Bug Tracker, https://github.com/MatthewSherlin/mushroomdb/issues
Project-URL: Homepage, https://github.com/MatthewSherlin/mushroomdb
Project-URL: Repository, https://github.com/MatthewSherlin/mushroomdb

# mushroomdb (Python)

Python bindings for [mushroomdb](https://github.com/MatthewSherlin/mushroomdb) —
the embedded graph database where edges are declared, not inserted.

```python
import mushroomdb
db = mushroomdb.GraphDb.open("./db")
db.insert_node("Org", "org-01", {"founded_year": 2010})
```

Full documentation, the rules tour, and benchmarks live in the
[main repository](https://github.com/MatthewSherlin/mushroomdb).

