another hexastore implementation
Installation | Getting Up And Running | Examples | API | See Also
An implementation of "Sextuple Indexing for Semantic Web Data Management" from C. Weiss et al.. This is an implementation for fun only, hence may be used if really needed, else it is adviced to use something more serious. The main feature are:
- Basic functionality to CRUD triples in the store.
pip install hexastore
nox -l
import hexastore
store = hexastore.Hexastore()
store.insert(["hexastores", "are", "awesome"])
store.insert(["cats", "are", "awesome"])
result = store.search(subject="cats")
For now pydoc hexastore.Hexastore
.