Interactive Neo4j console built on py2neo
Project description
ipy2neo is a an interactive command line console for working with Neo4j built on top of the py2neo library.
Quick Example
To connect to a local Neo4j instance is straightforward:
$ ipy2neo --uri neo4j://localhost:7687 --auth neo4j:password neo4j@localhost/~ -> CREATE (a:Person {name:'Alice'})-[:KNOWS]->(b:Person {name:'Bob'}) RETURN a, b a | b -----------------------------|--------------------------- (_0:Person {name: 'Alice'}) | (_1:Person {name: 'Bob'})
Installation
To install ipy2neo, simply use:
$ pip install ipy2neo
Requirements
The following versions of Python and Neo4j (all editions) are supported:
Python 2.7 / 3.5 / 3.6 / 3.7 / 3.8 / 3.9
Neo4j 3.4 / 3.5 / 4.0 / 4.1 / 4.2 / 4.3 (the latest point release of each version is recommended)
Note also that ipy2neo is developed and tested under Linux using standard CPython distributions. While other operating systems and Python distributions may work, support for these is not available.
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.