Skip to main content

rdflib stores based on pyoxigraph

Project description

Oxrdflib

PyPI PyPI - Implementation PyPI - Python Version actions status Gitter

Oxrdflib provides an rdflib store based on pyoxigraph. This store is named "Oxigraph".

It also exposes pyoxigraph parsers and serializers as rdflib parser and serializer plugins.

Oxigraph store can be used as drop-in replacement of the rdflib default one. It support context but not formulas. Transaction support is not implemented yet.

SPARQL query and update evaluation is done by pyoxigraph instead of rdflib if the Oxigraph store is used. SPARQL update evaluation on Graph and ConjunctiveGraph is still done using rdflib because of a limitation in rdflib context management.

Oxrdflib is available on Pypi and installable with:

pip install oxrdflib

The oxrdflib store is automatically registered as an rdflib store plugin by setuptools.

Warning: Oxigraph is not stable yet and its storage format might change in the future. To migrate to future version you might have to dump and load the store content. However, Oxigraph should be in a good enough shape to power most of use cases if you are not afraid of down time and data loss.

API

Store

To create a rdflib graph using the Oxigraph store use

rdflib.Graph(store="Oxigraph")

instead of the usual

rdflib.Graph()

Similarly, to get a dataset, use

rdflib.Dataset(store="Oxigraph")

instead of the usual

rdflib.Dataset()

If you want to get the store data persisted on disk, use the open method on the Graph or Dataset object with the directory where data should be persisted. For example:

graph = rdflib.Graph(store="Oxigraph", identifier="http://example.com") # without identifier, some blank node will be used
graph.open("test_dir")

The store is closed with the close() method or automatically when Python garbage collector collects the store object.

If the open method is not called Oxigraph will automatically use a ramdisk on Linux and a temporary file in the other operating systems.

To do anything else, use the usual rdflib python API.

It is also possible to directly inject a pyoxigraph Store object directly into an Oxrdflib store:

graph = rdflib.Graph(store=oxrdflib.OxigraphStore(store=pyoxigraph.Store("test_dir")))

This might be handy to e.g. open the database as read-only:

graph = rdflib.Graph(store=oxrdflib.OxigraphStore(store=pyoxigraph.Store.read_only("test_dir")))

Parsers and serializers

To use Oxigraph parser, prefix the format identifiers with ox-. For example, to load data using the Oxigraph NTriples parser:

graph.parse(data, format="ox-nt")

and to serialize to Turtle:

graph.serialize(format="ox-ttl")

The following formats are supported:

  • ox-ntriples (ox-nt)
  • ox-nquads (ox-nq)
  • ox-turtle (ox-ttl)
  • ox-trig
  • ox-n3
  • ox-xml
  • ox-json-ld (ox-streaming-json-ld for streaming JSON-LD, note that only JSON-LD 1.0 is supported)

Note that Oxigraph parser and serializers are not 1:1 compatible with the rdflib ones and some minor differences exist.

An optimization has also been setup to skip Python entirely if the Oxigraph parsers and serializers are used with the Oxigraph store.

Differences with rdflib default store

  • relative IRIs are not supported by Oxigraph.
  • Just like the SPARQLStore, Oxigraph joins the initBindings parameter of the query method after the query has been evaluated, instead of injecting them at the beginning of the query.
  • IRI prefixes set using the Graph bind method are not persisted on disk but kept in memory. They should be added again each time the store is opened.

Migration guide

From 0.2 to 0.3

  • The 0.2 stores named "OxSled" and "OxMemory" have been merged into the "Oxigraph" store.
  • The on-disk storage system provided by "OxSled" has been dropped and replaced by a new storage system based on RocksDB. To migrate you need to first dump your data in RDF using oxrdflib 0.2 and the serialize method, then upgrade to oxrdflib 0.3, and finally reload the data using the parse method.

Development

To run the test do first pip install -e . to register the stores in rdflib plugin registry. Then, cd tests && python -m unittest should run the tests.

The code is automatically formatted using black. A pre-commit configuration is provided. Run pip install pre-commit && pre-commit install to install pre-commit as a git pre-commit hook in your clone.

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

oxrdflib-0.5.0.tar.gz (7.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

oxrdflib-0.5.0-py3-none-any.whl (9.9 kB view details)

Uploaded Python 3

File details

Details for the file oxrdflib-0.5.0.tar.gz.

File metadata

  • Download URL: oxrdflib-0.5.0.tar.gz
  • Upload date:
  • Size: 7.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for oxrdflib-0.5.0.tar.gz
Algorithm Hash digest
SHA256 f83148e2c6d443f7718c6e8936c6b89e36ebb4f1002da69e8f0656e8fb5a0df2
MD5 476bf495bb2dffb3d8cd9dabae46f6b7
BLAKE2b-256 ec97589f244d9a12e033f5216595ef17e7975aabe7f906f709a3a8d1cde37288

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxrdflib-0.5.0.tar.gz:

Publisher: build.yml on oxigraph/oxrdflib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file oxrdflib-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: oxrdflib-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 9.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for oxrdflib-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 dbe7b57bddca1b2acaf93c71ce3cf2022be8e673052e05ad317682cb9c56b559
MD5 51756578104c492f4e47e5001da7bff0
BLAKE2b-256 c6f79cee8d87f202f88d93179db083508c898deac42b235ff20ade1f456770a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxrdflib-0.5.0-py3-none-any.whl:

Publisher: build.yml on oxigraph/oxrdflib

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page