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

Uploaded Source

File details

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

File metadata

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

File hashes

Hashes for neo4j-driver-1.1.2.tar.gz
Algorithm Hash digest
SHA256 6db3ed20dc8e4c4f13f275c3b5b10a3619881a98fe0d7d71bc86894cc28629f9
MD5 7d16c710714737d78dc3409fcc4fef8b
BLAKE2b-256 332385deea50ee4678c9ee19cc76688d18f856af7d9ab0338bde9d12e974decc

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