Metadata-Version: 2.4
Name: koi-net-graph-extension
Version: 0.1.3
Summary: Mixin extension for KOI-net nodes adding RDF graph capabilities
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Requires-Dist: koi-net>=2.1.0
Requires-Dist: rid-lib>=3.3.0
Requires-Dist: pyshacl>=0.31.0
Requires-Dist: rdflib>=7.6.0

# koi-net-graph-extension

An extension for the KOI-net library. Provides components, RID types, and vocabulary for handling graph-based knowledge objects in JSON-LD format. The easiest way to use this library is adding the `GraphMixin` to your node class:

```python
from koi_net.core import FullNode
from koi_net_graph_extension.core import GraphMixin

class MyNode(FullNode, GraphMixin):
    ...
```
