Metadata-Version: 1.0
Name: rdflib-django
Version: 0.1
Summary: Store implementation for RDFlib using Django models as its backend
Home-page: http://github.com/publysher/rdflib-django
Author: Yigal Duppen
Author-email: yigal@publysher.nl
License: MIT
Description: # rdflib-django
        
        A store implementation for [rdflib](http://pypi.python.org/pypi/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. 
        
        [![Build Status](https://secure.travis-ci.org/publysher/rdflib-django.png)](http://travis-ci.org/publysher/rdflib-django)
        
        ## 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](https://raw.github.com/publysher/rdflib-django/master/LICENSE). 
        
Keywords: django rdf rdflib store
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Python Modules
