Tpt
6aa27d4885
|
4 years ago | |
---|---|---|
.. | ||
docs | 4 years ago | |
src | 4 years ago | |
tests | 4 years ago | |
Cargo.toml | 4 years ago | |
README.md | 4 years ago | |
pyproject.toml | 4 years ago |
README.md
Pyoxigraph (Oxigraph for Python)
Pyoxigraph is a graph database library implementing the SPARQL standard. It is a Python library written on top of Oxigraph.
Pyoxigraph offers two stores with SPARQL 1.1 capabilities. One of the store is in-memory, and the other one is disk based.
It also provides a set of utility functions for reading, writing and processing RDF files in Turtle, TriG, N-Triples, N-Quads and RDF/XML.
Pyoxigraph is distributed on Pypi.
Run pip install pyoxigraph
to install it.
There exists also a small library providing rdflib stores using pyoxigraph: oxrdflib.
Pyoxigraph documentation is available on the Oxigraph website.
Build the development version
To build and install the development version of pyoxigraph you need to clone this git repository
and to run pip install .
in the python
directory (the one this README is in).
How to contribute
Pyoxigraph is written in Rust using PyO3.
Pyoxigraph is built using Maturin.
Maturin could be installed using the pip install maturin
.
To install a development version of Oxigraph just run maturin develop
in this README directory.
The Python bindings tests are written in Python.
To run them use python -m unittest
in the tests
directory.