Skip to main content

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

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.1.0.tar.gz (29.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

neo4j_driver-1.1.0-py2.py3-none-any.whl (43.0 kB view details)

Uploaded Python 2Python 3

File details

Details for the file neo4j-driver-1.1.0.tar.gz.

File metadata

  • Download URL: neo4j-driver-1.1.0.tar.gz
  • Upload date:
  • Size: 29.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for neo4j-driver-1.1.0.tar.gz
Algorithm Hash digest
SHA256 e20fc58362999863400cfca409fc55ddc11627309f7f6b7f59de3c499e424fa4
MD5 4fb0938b86bdf28b52ae7bfb37565911
BLAKE2b-256 7c7d043e6338301d6d3bf6d24428628d5fcf490a40ad8bf9e9ea2b0d1b948d8e

See more details on using hashes here.

File details

Details for the file neo4j_driver-1.1.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for neo4j_driver-1.1.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 30e9fb77525f4f5d25ef9935bc48e6d7d02132efdd727170d1dc6ec7da26678a
MD5 5370048694e4cf9c11552db34581c98f
BLAKE2b-256 86030b4a2db7512051f64e2974e7537f9e4ce65c660cf25d9b9f5b179fc6ba0e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page