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.0b3.tar.gz
(27.8 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.0b3.tar.gz.
File metadata
- Download URL: neo4j-driver-1.0.0b3.tar.gz
- Upload date:
- Size: 27.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc200c2a3e45ff659ddc50c82397434b9d1776d297b6cc754a857b4a46ce46c7
|
|
| MD5 |
71228b1620b2452de70d3574317c47ad
|
|
| BLAKE2b-256 |
c16fea5381e761d414e714193f04829efad0ab7b3fe534fb25796cc65202396c
|
File details
Details for the file neo4j_driver-1.0.0b3-py2.py3-none-any.whl.
File metadata
- Download URL: neo4j_driver-1.0.0b3-py2.py3-none-any.whl
- Upload date:
- Size: 30.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d7fab9900e2b76dbac62c5b07d5a54fe2e50ebc80c1454e68b3b7c0ee22d2b8
|
|
| MD5 |
5bc4ad7bd051bf6f69c96a9b8cb01947
|
|
| BLAKE2b-256 |
6ff6d6cf1eaa73ce1dd1e61454722384b8198dce92dc949a77989dfab3df4291
|