krishnadubagunta / py2neo

Py2neo is a comprehensive toolkit for working with Neo4j from within Python applications or from the command line.

Home Page:http://py2neo.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Py2neo v4

License

Py2neo is a client library and toolkit for working with Neo4j from within Python applications and from the command line. The library supports both Bolt and HTTP and provides a high level API, an OGM, admin tools, an interactive console, a Cypher lexer for Pygments, and many other bells and whistles. Unlike previous releases, Py2neo does not require an HTTP-enabled server and can work entirely through Bolt.

When considering whether to use py2neo or the official Python Driver for Neo4j, there is a trade-off to be made. Py2neo offers a higher level API and an OGM, but the official driver provides mechanisms to work with clusters, such as automatic retries. If you are new to Neo4j, need an OGM, do not want to learn Cypher immediately, or require data science integrations, py2neo may be the better choice. If you are building a high-availability Enterprise application, or are using a cluster, you likely need the official driver.

Installation

PyPI version Build Status Coverage Status

To install the latest stable version of py2neo, simply use pip:

$ pip install py2neo

Or to install the latest bleeding edge code directly from GitHub, use:

$ pip install git+https://github.com/technige/py2neo.git#egg=py2neo

Note that code installed directly from GitHub is likely to be unstable. Your mileage may vary.

Requirements

Python versions Neo4j versions

The following versions of Python and Neo4j are supported:

  • Python 2.7 / 3.5 / 3.6 / 3.7 / 3.8
  • Neo4j 3.2 / 3.3 / 3.4 / 3.5 / 4.0 (the latest point release of each version is recommended)

While either Neo4j Community or Enterprise edition may be used, py2neo offers no direct support for Enterprise-only features, such as Causal Clustering.

Note also that Py2neo 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.

Contact

For more information, read the handbook.

About

Py2neo is a comprehensive toolkit for working with Neo4j from within Python applications or from the command line.

http://py2neo.org

License:Apache License 2.0


Languages

Language:Python 98.1%Language:HTML 0.8%Language:Shell 0.5%Language:Jupyter Notebook 0.4%Language:CSS 0.1%