Socket
Socket
Sign inDemoInstall

python-rexster

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

python-rexster

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


Maintainers
1

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

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc