Skip to main content

Cypher access to Neo4J via IPython

Project description

Package Description

ICypher is an IPython extension for running Cypher queries against a Neo4J graph database within IPython.

Latest Version Downloads

Installation

The package may be installed as follows:

pip install icypher

After installation, the extension may be loaded within an IPython session with

%load_ext icypher

Usage Examples

Use default URI http://localhost:7474/db/data:

%cypher

Set name and password, but use default URI:

%cypher user:passwd

Set database URI with name and password:

%cypher http://user:passwd@localhost:7474/db/data

Set database URI and return all nodes:

%%cypher http://localhost:7474/db/data
MATCH (n) RETURN n

Create a node using the most recently configured database (or the default if none was specified:

%cypher CREATE (n {name: 'foo'}) RETURN n

Retrieve properties of several nodes:

results = %cypher MATCH (n) RETURN n
print [result.n.properties for result in results]

Development

The latest release of the package may be obtained from GitHub.

Author

See the included AUTHORS.rst file for more information.

License

This software is licensed under the BSD License. See the included LICENSE.rst file for more information.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

icypher-0.1.4.1.tar.gz (22.2 kB view hashes)

Uploaded Source

Built Distribution

icypher-0.1.4.1-py2.py3-none-any.whl (5.7 kB view hashes)

Uploaded Python 2 Python 3

Supported by

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