Django apps for integration between Resource Description Framework (RDF) and django REST framework. The repository contains two django apps, rdf
for general RDF functionality and sparql
to add views for SPARQL queries. The functionality is intended as generic and useful for any project that intends to expose an RDF database through a django REST framework API.
These apps were originally developed within the read-it interface. The code was moved to this independent repository so it could be used in another application, EDPOP.
Both of these applications are in active development; as such, this repository may see further updates to serve the needs of different applications. We welcome contributions to make the package more widely applicable.
However, be advised that this repository was primarily developed to be used in our own applications. It may not have the level of documentation that you would expect from a public-facing package. At the very least, the documentation will assume that you have basic familiarity with both RDF and django REST framework.
Follow the getting started guide to use the app in a django project.
Usage documentation is available in the documentation directory or read the docs
These steps are for development on the rdf app itself. Follow the steps below in order to run the unit tests.
Before you start, you need to install Blazegraph. The unit tests assume that you have a blazegraph server running and that the namespace 'rdf-test' is created. The following steps suffice to make this true.
Follow the Blazegraph quick start guide to download and start the database server and a foreground process.
While the server is running, you can access its web interface at http://localhost:9999. This lets you upload and download data, try out queries and review statistics about the dataset. The server can be stopped by typing ctrl-c
.
Visit the web interface, navigate to the NAMESPACES
tab. Use the create namespace
form to create a new namespace. Choose rdf-test
as a name, and set the mode to quads
. All other checkboxes should be disabled. A popup is shown with additional settings. Leave these at their default values and choose Create
. The created namespace should now appear in the list of namespaces. Choose use
to use the rdf-test namespace when operating the web interface
- Clone this repository
- Install the required python packages via
pip install -r requirements.txt
- Make sure your blazegraph server is running and that the
rdf-test
namespace exists inquads
mode (see above). - Run the unit tests with
pytest
.
To use your work-in-progress drf app in a django project, build the package with
python setup.py sdist
You can now find the package in this repository under dist/restframework-drf-blablabla.tar.gz
To install the package in your project, install via pip as
pip install path/to/repository/dist/restframework-drf-*.targ.gz
Documentation (in the docs
directory) is based on MkDocs.
You can browse the documentation in a development server by running
mkdocs serve