Neo4j Bolt driver for Python
Project description
Installation
To install the latest stable version, use:
pip install neo4j-driver
For the most up-to-date version (possibly unstable), use:
pip install git+https://github.com/neo4j/neo4j-python-driver.git#egg=neo4j-driver
Example Usage
from neo4j.v1 import GraphDatabase
driver = GraphDatabase.driver("bolt://localhost")
session = driver.session()
session.run("CREATE (a:Person {name:'Bob'})")
result = session.run("MATCH (a:Person) RETURN a.name AS name")
for record in result:
print(record["name"])
result.close()
session.close()
Command Line
python -m neo4j "CREATE (a:Person {name:'Alice'}) RETURN a, labels(a), a.name"
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
neo4j-driver-1.0.0rc2.tar.gz
(29.5 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file neo4j-driver-1.0.0rc2.tar.gz.
File metadata
- Download URL: neo4j-driver-1.0.0rc2.tar.gz
- Upload date:
- Size: 29.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
833306709e7c35fbd25b4f2e1f3639495c8067aa5adcc9d9c9172032d77adbb6
|
|
| MD5 |
c35d5e5b6d5f55a136f4eb2246b7cfff
|
|
| BLAKE2b-256 |
30d801fe9784b53832880475026fdd3ff2b5509aa501d5589eeb19d9204c0202
|
File details
Details for the file neo4j_driver-1.0.0rc2-py2.py3-none-any.whl.
File metadata
- Download URL: neo4j_driver-1.0.0rc2-py2.py3-none-any.whl
- Upload date:
- Size: 32.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f7c915b114d335a252833f2b4f40025a6d696063739e20c6648cfb10e1cf0ed
|
|
| MD5 |
88777522279634dbfad2547c6e13a426
|
|
| BLAKE2b-256 |
449804b0946a33c380750da2b608b66de30868a8956273a8de57ce2dc915eaa8
|