Skip to main content

A Python client for Rexster following the Blueprints property graph model interface

Project description

synopsis:

Implements a client over Rexster (https://github.com/tinkerpop/rexster/) providing the Python developer an easy way to interact with the databases supported.

The layer follows the pyblueprints graph model interface letting the programmer work in the same way, no matter which underlying graph database is being used.

Installation

The easiest way to get python-rexster installed in your virtualenv is by:

pip install python-rexster

Usage

Connecting to a Rexster instance

>>> from rexster import RexsterServer, RexsterGraph
>>> #Connecting to server
>>> HOST = 'http://localhost:8182'
>>> server = RexsterServer(HOST)
>>> #List graphs availbale in server
>>> server.graphs()
[u'tinkergraph', u'gratefulgraph', u'tinkergraph-readonly', u'sailgraph', u'emptygraph']
>>> #Connecting to a given graph
>>> graph = RexsterIndexableGraph(server, 'tinkergraph')

Changelog

0.1.1 (2011-07-12)

  • Added returning None instead of raising exceptions (more pythonic way)

  • Updated tests

0.1 (2011-07-6)

Initial version

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

python-rexster-0.1.1.tar.gz (18.2 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