Metadata-Version: 1.0
Name: python-rexster
Version: 0.1.1
Summary: A Python client for Rexster following
                    the Blueprints property graph model
                    interface
Home-page: https://github.com/CulturePlex/python-rexster
Author: Diego Muñoz Escalante
Author-email: escalant3@gmail.com
License: GPL 3
Description: python-rexster
        ==============
        
        :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
        
Keywords: rexster rest property graph model interface graphdb 
                graphdatabase database blueprints orientdb neo4j
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
