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-0.0.0.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-0.0.0.tar.gz.
File metadata
- Download URL: neo4j-driver-0.0.0.tar.gz
- Upload date:
- Size: 22.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d384cc05bc2cebad5e3f411a3a15d5b519e9aa364fef8b09d9702503f4d6833
|
|
| MD5 |
b94eb87f978b41ca6f7e4b1855de978d
|
|
| BLAKE2b-256 |
a6dac18338c47995dde05cadeb5041eb436becec8e1e8f056e66aeac4c540acc
|
File details
Details for the file neo4j_driver-0.0.0-py2.py3-none-any.whl.
File metadata
- Download URL: neo4j_driver-0.0.0-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 |
e44f8ea8527b1366ee2500786f08c7bb1e6421c4dbd2b93e1463a28da4955ef7
|
|
| MD5 |
383b2973be2bd3ecc8ac06c9ad39b4d3
|
|
| BLAKE2b-256 |
c25ded5b36e69140dfed9f31a950c3bed7cff5d16eb748f21a62b5dc171b37d7
|