neo4jrestclient

Library to interact with Neo4j standalone REST server
Download

neo4jrestclient Ranking & Summary

Advertisement

  • Rating:
  • License:
  • GPL v3
  • Publisher Name:
  • Javier de la Rosa
  • Publisher web site:
  • http://versae.github.com/

neo4jrestclient Tags


neo4jrestclient Description

Library to interact with Neo4j standalone REST server The first objective of neo4jrestclient is to make transparent for Python programmers the use of a local database through neo4j.py or a remote database thanks to Neo4j REST Server. So, the syntax of this API is fully compatible with neo4j.py. However, a new syntax is introduced in order to reach a more pythonic style.Installation:Available throught Python Package Index:pip install neo4jrestclientOr:easy_install neo4jrestclientGetting startedThe main class is GraphDatabase, exactly how in neo4j.py:>>> from neo4jrestclient import GraphDatabase>>> gdb = GraphDatabase("http://localhost:7474/db/data/")Two global options are available:neo4jrestclient.request.CACHE = False # DefaultIf CACHE is 'True', a '.cache' directory is created and the future request to the same URL will be taken from cache And:neo4jrestclient.request.DEBUG = False # DefaultIf DEBUG is 'True', 'httplib2' is set to debuglevel = 1. Requirements: · Python What's New in This Release: · Added a test for deleting relationships. · Fixing an Index compatibility issue with Python 2.6.1. · Fixing an error in extensions support with named params.


neo4jrestclient Related Software