Metadata-Version: 1.1
Name: neo4j-driver
Version: 1.0.2
Summary: Neo4j Bolt driver for Python
Home-page: https://github.com/neo4j/neo4j-python-driver
Author: Neo Technology
Author-email: drivers@neo4j.com
License: Apache License, Version 2.0
Description: ============================
        Neo4j Bolt Driver for Python
        ============================
        
        
        Installation
        ============
        
        To install the latest stable version, use:
        
        .. code:: bash
        
            pip install neo4j-driver
        
        For the most up-to-date version (possibly unstable), use:
        
        .. code:: bash
        
            pip install git+https://github.com/neo4j/neo4j-python-driver.git#egg=neo4j-driver
        
        
        Example Usage
        =============
        
        .. code:: python
        
            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
        ============
        
        .. code:: bash
        
            python -m neo4j "CREATE (a:Person {name:'Alice'}) RETURN a, labels(a), a.name"
        
Keywords: neo4j graph database
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Database
Classifier: Topic :: Software Development
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
