Metadata-Version: 2.0
Name: rdflib-appengine
Version: 1.2.0
Summary: Python distributible for using rdflib with NDB
Home-page: https://github.com/mr-niels-christensen/rdflib-appengine
Author: Niels Christensen
Author-email: nhc@mayacs.com
License: Apache 2.0
Keywords: semantic-web rdf rdflib google-app-engine gae ndb
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2.7
Requires-Dist: rdflib (==4.1.2)

rdflib-appengine
================

This aim of this project is to allow rdflib, the Python RDF library, to be deployed on Google App Engine (GAE) with data be persisted in the NDB storage.

All use is at your own risk.

To use this project your application should run on GAE using Python 2.7.

Assuming that you are familiar with rdflib (https://rdflib.readthedocs.org/en/latest/), to get started with this project, simply create a graph like this:

.. code:: python

  from rdflib import Graph
  from rdflib_appengine.ndbstore import NDBStore
  g = Graph(store = NDBStore(identifier = 'my_first_store'))

See https://github.com/mr-niels-christensen/rdflib-appengine and https://semanticwebrecipes.wordpress.com/2015/01/09/triple-store-in-the-cloud/ for further information.


