Library enabling to use triple store with Django

829 Views Asked by At

I need to create quickly a simple web application - an interface for querying a triple store. Previously I made such an application with Django for querying a graph database Neo4j, I used the Neomodel package for binding Django and Neo4j. Is there such a package for using Django with a triple store? I have already installed Fuseki and have my data in turtle format. On this page: http://csarven.ca/how-to-create-a-linked-data-site it is explained how to to do what I need but using PHP, which I have no notion of. Since I don't have much time to waste, I would prefer to work with the pythonic Django, already familiar to me.

1

There are 1 best solutions below

3
On

If you want to work with Django, you're lucky, because Python has a libary that helps you to work with triple store, called RDFlib, based on RDF. RDFlib Docs

The Resource Description Framework (RDF) is a family of World Wide Web Consortium (W3C) specifications originally designed as a metadata data model. It has come to be used as a general method for conceptual description or modeling of information that is implemented in web resources, using a variety of syntax notations and data serialization formats. It is also used in knowledge management applications. Wikipedia

Working specifically in Django, it's hard to give a guideline because the question is wide. Maybe you can find some packages to help you in Django Packages