/hexastore

another hexastore implementation

Primary LanguagePythonMIT LicenseMIT

hexastore

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.

Installation

pip install hexastore

Getting Up and Running

nox -l

Examples

import hexastore
store = hexastore.Hexastore()
store.insert(["hexastores", "are", "awesome"])
store.insert(["cats", "are", "awesome"])
result = store.search(subject="cats")

API

For now pydoc hexastore.Hexastore.

See Also

  • See the original paper here.

  • Or for a more serious library, maybe use this.