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"])
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.2.tar.gz
(22.4 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.2.tar.gz.
File metadata
- Download URL: neo4j-driver-1.0.2.tar.gz
- Upload date:
- Size: 22.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c0a200e2628e2c20e5bb9053bd7375e9be7bbf74d05d371b7351612b807e5a1
|
|
| MD5 |
0dde971f0b8c9573e59da6429e4c0bc5
|
|
| BLAKE2b-256 |
905e9f5d4bbc1fa9f0ae2fbf1268857e771335a7d4bf602a3f864d699e4d19da
|
File details
Details for the file neo4j_driver-1.0.2-py2.py3-none-any.whl.
File metadata
- Download URL: neo4j_driver-1.0.2-py2.py3-none-any.whl
- Upload date:
- Size: 32.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f698b88fdf88d4e0739498aca8181c21d558e0fa54d5557a38a945fa76c01866
|
|
| MD5 |
a57c7de567ed2577ebe8500a55463a80
|
|
| BLAKE2b-256 |
34c6b02317cbc92d16bbf12fa3f09af67a30e3154154fbefd5260c59e3ec7e5e
|