Neo4j Bolt driver for Python
Project description
The Official Neo4j Driver for Python supports Neo4j 3.0 and above and Python versions 2.7, 3.4 and 3.5.
Quick Example
from neo4j.v1 import GraphDatabase, basic_auth uri = "bolt://localhost:7687" auth_token = basic_auth("neo4j", "password") driver = GraphDatabase.driver(uri, auth=auth_token) def print_friends_of(name): with driver.session() as session: with session.begin_transaction() as tx: for record in tx.run("MATCH (a:Person)-[:KNOWS]->(f) " "WHERE a.name = {name} " "RETURN f.name", name=name): print(record["f.name"]) print_friends_of("Alice")
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
Other Information
- Neo4j Manual
- Neo4j Quick Reference Card
- Example Project
- Driver Wiki (includes change logs)
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.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size neo4j_driver-1.1.0-py2.py3-none-any.whl (43.0 kB) | File type Wheel | Python version 2.7 | Upload date | Hashes View |
Filename, size neo4j-driver-1.1.0.tar.gz (29.5 kB) | File type Source | Python version None | Upload date | Hashes View |
Close
Hashes for neo4j_driver-1.1.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 30e9fb77525f4f5d25ef9935bc48e6d7d02132efdd727170d1dc6ec7da26678a |
|
MD5 | 5370048694e4cf9c11552db34581c98f |
|
BLAKE2-256 | 86030b4a2db7512051f64e2974e7537f9e4ce65c660cf25d9b9f5b179fc6ba0e |