Skip to main content

Store implementation for RDFlib using Django models as its backend

Project description

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.

https://secure.travis-ci.org/publysher/rdflib-django.png

Quick start

Add the rdflib-django sources to your project, and add rdflib_django to your INSTALLED_APPS in settings.py.

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 django_rdflib’s API:

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

Getting the conjunctive graph using django_rdflib’s API:

from django_rdflib 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.

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

rdflib-django-0.1.1.tar.gz (13.0 kB view hashes)

Uploaded Source

Built Distribution

rdflib_django-0.1.1-py2.7.egg (38.3 kB view hashes)

Uploaded Source

Supported by

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