-
Notifications
You must be signed in to change notification settings - Fork 73
/
README.txt
96 lines (55 loc) · 2.54 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
.. image:: https://travis-ci.org/versae/neo4j-rest-client.png?branch=master
:target: https://travis-ci.org/versae/neo4j-rest-client
.. image:: https://coveralls.io/repos/versae/neo4j-rest-client/badge.png?branch=master
:target: https://coveralls.io/r/versae/neo4j-rest-client?branch=master
Neo4j Python REST Client
========================
:synopsis: Object-oriented Python library to interact with Neo4j standalone REST server.
The first objective of Neo4j Python REST Client is to make transparent for
Python programmers the use of a local database through python-embedded_ or a
remote database thanks to Neo4j REST Server. So, the syntax of this API is
fully compatible with python-embedded. However, a new syntax is introduced in
order to reach a more pythonic style.
Installation_
-------------
Available throught Python Package Index::
$ pip install neo4jrestclient
Or::
$ easy_install neo4jrestclient
`Getting started`_
------------------
The main class is *GraphDatabase*, exactly how in python-embedded_:
.. code:: python
>>> from neo4jrestclient.client import GraphDatabase
>>> gdb = GraphDatabase("http://localhost:7474/db/data/")
Due to the syntax is fully compatible with python-embedded_, the next lines only show
the commands added and its differences.
Creating a node:
.. code:: python
>>> n = gdb.nodes.create()
# Equivalent to
>>> n = gdb.node()
Specify properties for new node:
.. code:: python
>>> n = gdb.nodes.create(color="Red", width=16, height=32)
Accessing properties:
.. code:: python
>>> value = n['key'] # Get property value
>>> n['key'] = value # Set property value
Create relationship:
.. code:: python
>>> n1.relationships.create("Knows", n2) # Useful when the name of
# relationship is stored in a variable
Specify properties for new relationships:
.. code:: python
>>> n1.Knows(n2, since=123456789, introduced_at="Christmas party")
Documentation_
--------------
For the extended and latest version of the documentation, please, visit the
`read the docs`_ site
.. _python-embedded: http://docs.neo4j.org/drivers/python-embedded/snapshot/
.. _lucene-querybuilder: http://github.com/scholrly/lucene-querybuilder
.. _`read the docs`: http://readthedocs.org/docs/neo4j-rest-client/en/latest/
.. _Documentation: http://readthedocs.org/docs/neo4j-rest-client/en/latest/
.. _Installation: https://neo4j-rest-client.readthedocs.org/en/latest/info.html#installation
.. _`Getting started`: https://neo4j-rest-client.readthedocs.org/en/latest/info.html#getting-started