Skip to content

DarioGT/rdflib-django

 
 

Repository files navigation

rdflib-django

A store implementation for rdflib that uses Django as its backend.

The current implementation is context-aware but not formula-aware. Furthermore, performance has not yet been considered.

The implementation assumes that contexts are used for named graphs.

image

Quick start

Install rdflib-django with your package manager:

pip install rdflib-django

Add rdflib_django to your INSTALLED_APPS:

INSTALLED_APPS = (
    # other apps
    'rdflib_django'.
)

You can now use the following examples to obtain a graph.

Getting a graph using rdflib's store API:

from rdflib import Graph
graph = Graph('Django')
graph.open(create=True)

This example will give you a graph identified by a blank node within the default store.

Getting a conjunctive graph using rdflib's store API:

from rdflib import ConjunctiveGraph
graph = ConjunctiveGraph('Django')

This example will give you a conjunctive graph in the default store.

Getting a named graph using rdflib-django's API:

from rdflib_django import utils
graph = utils.get_named_graph('http://example.com')

Getting the conjunctive graph using rdflib-django's API:

from rdflib_django import utils
graph = utils.get_conjunctive_graph()

Management commands

rdflib-django includes two management commands to import and export RDF:

$ python manage.py import_rdf --context=http://example.com my_file.rdf
$ python manage.py export_rdf --context=http://example.com

License

rdflib-django is licensed under the MIT license.

About

An implementation of the RDFlib Store API that uses Django for its backend.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published