Code Monkey home page Code Monkey logo

django-4store's Introduction

django-4store

Author

Martin Galpin

Contact

[email protected]

django-4store is a small Django application that makes developing apps with the 4Store RDF database easier.

Installation

django-4store is on PyPi for easy_install or buildout:

$ easy_install django-4store

Alternatively, clone the repository and place it either in your Django project or within your $PYTHONPATH:

$ git clone git://github.com/66laps/django-4store.git

Configuration

Edit your settings.py and add fourstore to the end of INSTALLED_APPS.

You must also add two additional settings to settings.py:

FOURSTORE_KBNAME = "demo"  # Name of 4store knowledge base
FOURSTORE_PORT = 6667      # Port for 4store HTTP server

It is recommended (but not required) that you also set a constant to the SPARQL endpoint at the same time:

SPARQL_ENDPOINT = "http://localhost:6667/sparql/"

Code that depends on this endpoint URL will continue to work during testing (see Test Cases.)

Management Commands

Two management commands are provided that wrap the standard 4s-* commands for convenience.

The first, 4store-import will create and import the specified files into the 4store knowledge base (in settings.py):

$ python manage.py 4store-import rdf/card.rdf rdf/myself.n3

The flag --recursive can be specified to recursively add any RDF files in a directory.

Note that importing data will overwrite any existing content in the knowledge base.

The second command, 4store will start the HTTP server on the port specified in settings.py:

$ python manage.py 4store
...

Test Cases

A subclass of django.test.Testcase is included. This provides a mechanism for starting an isolated 4store server and automatically importing test fixtures.

For example, the following test case can be used to test any 4store dependant code:

from django.conf import settings
from HTTP4Store import HTTP4Store

from fourstore.test import Base4StoreTest

class MySemanticTestCase(Base4StoreTest):
    kbfixtures = ["card.rdf", "someone.n3"]

def test_something(self):
    store = HTTP4Store(settings.SPARQL_ENDPOINT)
    response = store.sparql("SELECT * WHERE { ?s ?p ?o . } ")
    self.assertEquals(..., response)

Test fixtures should be placed within the fixtures directory of the app under testing (note the class variable is kbfixtures).

The Django setting attribute settings.SPARQL_ENDPOINT is automatically updated to the current endpoint URL.

The server is reinitialised between tests and its operation is dependant on setUp and tearDown. If you need to override these methods, make sure that you still call the parent implementations:

class MySemanticTestCase(Base4StoreTest):
    ...
    def setUp(self):
         Base4StoreTest.setUp(self)
     // do something

    def tearDown(self):
        Base4StoreTest.tearDown(self)
        // do something

Views

Cross-site HTTP Requests are typically blocked by web browsers for many historically well documented security reasons. These restrictions prevent web applications from communicating directly with SPARQL endpoints.

django-4store provides a solution to this problem. The view fourstore.views.sparql_proxy relays all HTTP requests it receives to a specified endpoint (given in urls.py).

For example, to communicate with Dbpedia configure urls.py as follows:

from django.conf.urls.defaults import url, patterns

urlpatterns = patterns('fourstore.views',
    url(r"^sparql/$", "sparql_proxy", {"sparql_endpoint": "http://www.dbpedia.org/sparql/"}),
)

Any requests made to http://www.yourdjangoapp.com/sparql/ are now automatically relayed to http://www.dbpedia.org/sparql/ and the response transparent sent back to the originating browser.

Note that in accordance with the SPARQL Protocol all requests must have a Content-Type of application/x-www-form-urlencoded.

Test Suite

A test suite for django-4store is included:

$ python manage.py test fourstore

License

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

django-4store's People

Contributors

galpin avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

pombredanne

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.