A Python hypergraph library with provenance and SQLite persistence.
Project description
Hypabase
A Python hypergraph library with provenance and SQLite persistence.
Install
uv add hypabase
Quick example
from hypabase import Hypabase
hb = Hypabase("my.db")
# One edge connecting five entities
hb.edge(
["dr_smith", "patient_123", "aspirin", "headache", "mercy_hospital"],
type="treatment",
source="clinical_records",
confidence=0.95,
)
# Query edges involving a node
hb.edges(containing=["patient_123"])
# Find paths between entities
hb.paths("dr_smith", "mercy_hospital")
Features
- Hyperedges — an edge connects 2+ nodes in a single relationship
- Provenance — every edge carries
sourceandconfidence - SQLite persistence — data persists to a local file automatically
- O(1) vertex-set lookup — find edges by their exact node set
- Namespace isolation —
.database("name")for scoped views in a single file - Provenance queries — filter by
sourceandmin_confidence, summarize withsources() - Memory MCP server — 7 tools for AI agent persistent memory (remember, recall, forget, consolidate, connections, who_knows_what, resolve_contradiction)
- CLI —
hypabase init,hypabase node,hypabase edge,hypabase query
Provenance
Every edge carries source and confidence:
hb.edge(
["patient_123", "aspirin", "ibuprofen"],
type="drug_interaction",
source="clinical_decision_support_v3",
confidence=0.92,
)
# Bulk provenance via context manager
with hb.context(source="schema_analysis", confidence=0.9):
hb.edge(["a", "b"], type="fk")
hb.edge(["b", "c"], type="fk")
# Query by provenance
hb.edges(source="clinical_decision_support_v3")
hb.edges(min_confidence=0.9)
# Overview of all sources
hb.sources()
Namespace isolation
Isolate data into separate namespaces within a single file:
hb = Hypabase("knowledge.db")
drugs = hb.database("drugs")
sessions = hb.database("sessions")
drugs.node("aspirin", type="drug")
sessions.node("s1", type="session")
drugs.nodes() # -> [aspirin]
sessions.nodes() # -> [s1]
What is a hypergraph?
In a regular graph, an edge connects exactly two nodes. In a hypergraph, a single edge — called a hyperedge — can connect any number of nodes at once.
Consider a medical event: Dr. Smith prescribes aspirin to Patient 123 for a headache at Mercy Hospital. In a traditional graph, you'd split this into binary edges — doctor-patient, doctor-drug, patient-hospital — and the fact that they belong to one event becomes an inference, not a structure. A hypergraph stores this natively: one edge connecting all five entities.
This matters because real-world relationships often involve more than two things. A paper has three or four authors, not one. A transaction involves a buyer, a seller, a product, and a payment method. A chemical reaction has reagents and products on both sides. Forcing these into pairs means the grouping becomes implicit.
Why provenance?
When relationships come from different sources — manual entry, LLM extraction, sensor data, clinical records — you need to know where each one came from and how much you trust it. Hypabase tracks this with two fields on every edge: source (a string identifying the origin) and confidence (a float from 0 to 1). You can filter queries by these fields and get a summary of all sources in your graph with hb.sources().
Where hypergraphs show up
- Knowledge graphs — representing complex real-world relationships without decomposition
- Agent memory — structured, queryable memory for AI agents that persists across sessions
- Biomedical data — drug interactions, clinical events, molecular pathways
- RAG pipelines — storing extracted relationships for retrieval-augmented generation
- Supply chains, collaboration networks, and anywhere relationships involve more than two things
The broader idea has roots in AI research going back to OpenCog's AtomSpace, which uses hypergraph-like structures to represent knowledge for AGI. More recent work applies hypergraphs specifically to retrieval and reasoning:
- HyperGraphRAG — n-ary knowledge retrieval across medicine, agriculture, CS, and law
- Cog-RAG — dual-hypergraph retrieval with theme-level and entity-level recall
- Hypergraph Memory for Multi-step RAG — hypergraph-based memory for long-context relational modeling
MCP server
Hypabase includes a Memory MCP server with 7 tools so AI agents can use it as structured, persistent memory. Works with Claude Code, Claude Desktop, Cursor, Windsurf, and any MCP-compatible client.
uv add hypabase
hypabase-memory
CLI
uv add hypabase
hypabase init
hypabase node dr_smith --type doctor
hypabase edge dr_smith patient_123 aspirin --type treatment --source clinical_records
hypabase query --containing dr_smith
hypabase stats
Documentation
License
Apache 2.0
Project details
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 hypabase-0.2.1.tar.gz.
File metadata
- Download URL: hypabase-0.2.1.tar.gz
- Upload date:
- Size: 277.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
173073c19e90541ab74e1525c90da9cc00875e8155037e5fafae806a331e53f1
|
|
| MD5 |
120093578260c94789c847cf1c4d59fb
|
|
| BLAKE2b-256 |
09f9879ae2adfc7ad9ceaaec1d0a006416a7ba2075a2c581abc757fff556a2ac
|
Provenance
The following attestation bundles were made for hypabase-0.2.1.tar.gz:
Publisher:
release.yml on hypabase/hypabase
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hypabase-0.2.1.tar.gz -
Subject digest:
173073c19e90541ab74e1525c90da9cc00875e8155037e5fafae806a331e53f1 - Sigstore transparency entry: 1003559769
- Sigstore integration time:
-
Permalink:
hypabase/hypabase@c00a912a6df1e1bc84e5ac778a375475824649e3 -
Branch / Tag:
refs/tags/v0.2.1 - Owner: https://github.com/hypabase
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@c00a912a6df1e1bc84e5ac778a375475824649e3 -
Trigger Event:
push
-
Statement type:
File details
Details for the file hypabase-0.2.1-py3-none-any.whl.
File metadata
- Download URL: hypabase-0.2.1-py3-none-any.whl
- Upload date:
- Size: 81.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f405e8516f0ba20256ba360f8c1338d0456e9086ec2277da3659dd66714777a0
|
|
| MD5 |
48bc336746ad4faad2384b07977294bd
|
|
| BLAKE2b-256 |
f987802b4a0ec8191814de2f5eaffc3c07d453da9a041de43883a2d01f9ae49a
|
Provenance
The following attestation bundles were made for hypabase-0.2.1-py3-none-any.whl:
Publisher:
release.yml on hypabase/hypabase
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hypabase-0.2.1-py3-none-any.whl -
Subject digest:
f405e8516f0ba20256ba360f8c1338d0456e9086ec2277da3659dd66714777a0 - Sigstore transparency entry: 1003559781
- Sigstore integration time:
-
Permalink:
hypabase/hypabase@c00a912a6df1e1bc84e5ac778a375475824649e3 -
Branch / Tag:
refs/tags/v0.2.1 - Owner: https://github.com/hypabase
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@c00a912a6df1e1bc84e5ac778a375475824649e3 -
Trigger Event:
push
-
Statement type: