All Projects → py2neo-org → py2neo

py2neo-org / py2neo

Licence: Apache-2.0 license
Py2neo is a comprehensive Neo4j driver library and toolkit for Python.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to py2neo

seabolt
Neo4j Bolt Connector for C
Stars: ✭ 37 (-96.65%)
Mutual labels:  neo4j, neo4j-database, neo4j-driver, neo4j-graph
neo4j-graphql-py
A GraphQL to Cypher query execution layer for Neo4j and Python GraphQL implementations.
Stars: ✭ 14 (-98.73%)
Mutual labels:  neo4j, neo4j-database, neo4j-driver
neo4rs
Neo4j driver for rust
Stars: ✭ 41 (-96.29%)
Mutual labels:  neo4j, neo4j-database, neo4j-driver
Ocelot-Social
Free and open-source social network for active citizenship.
Stars: ✭ 49 (-95.57%)
Mutual labels:  neo4j, neo4j-database
neo4j-java-driver-spring-boot-starter
Automatic configuration of Neo4j's Java Driver for Spring Boot applications
Stars: ✭ 33 (-97.01%)
Mutual labels:  neo4j, neo4j-driver
neo listens
Sample Event Listener / Triggers
Stars: ✭ 16 (-98.55%)
Mutual labels:  neo4j, neo4j-database
sqerzo
Tiny ORM for graph databases: Neo4j, RedisGraph, AWS Neptune or Gremlin
Stars: ✭ 28 (-97.47%)
Mutual labels:  neo4j, neo4j-database
OGMNeo
[No Maintenance] Neo4j nodeJS OGM(object-graph mapping) abstraction layer
Stars: ✭ 54 (-95.11%)
Mutual labels:  neo4j, neo4j-driver
neo4j-jdbc
JDBC driver for Neo4j
Stars: ✭ 110 (-90.05%)
Mutual labels:  neo4j, neo4j-driver
angular-neo4j
Neo4j Bolt driver wrapper for Angular
Stars: ✭ 18 (-98.37%)
Mutual labels:  neo4j, neo4j-driver
neo4j-ogm-university
Example Project for Neo4j OGM
Stars: ✭ 52 (-95.29%)
Mutual labels:  neo4j, neo4j-ogm
neo4j.cr
Pure-Crystal implementation of Neo4j's Bolt protocol
Stars: ✭ 29 (-97.38%)
Mutual labels:  neo4j, neo4j-driver
elixir ravelry
Elixir API using Neo4j database for ElixirConf 2017 talk
Stars: ✭ 21 (-98.1%)
Mutual labels:  neo4j, neo4j-database
d3js-neo4j-example
Some of D3.js v5 example pages visualize the result from Neo4j
Stars: ✭ 37 (-96.65%)
Mutual labels:  neo4j, neo4j-graph
neo4j-aws-causal-cluster
Neo4j Enterprise Causal Cluster on AWS ECS by GetSocial
Stars: ✭ 24 (-97.83%)
Mutual labels:  neo4j
instacart-neo4j
Playing with Instacart data in Neo4j
Stars: ✭ 16 (-98.55%)
Mutual labels:  neo4j
nean-stack-starter
neo4j, express, angular, node
Stars: ✭ 30 (-97.29%)
Mutual labels:  neo4j
chatbot
kbqa task-oriented qa seq2seq ir neo4j jena seq2seq tf chatbot chat
Stars: ✭ 32 (-97.1%)
Mutual labels:  neo4j
neo4j-bloom
A public repository for informal docs, problem reporting and content sharing related to Neo4j Bloom.
Stars: ✭ 15 (-98.64%)
Mutual labels:  neo4j
twitter
Use the twitter streaming API and store tweets, users, ... in a NEO4J database
Stars: ✭ 26 (-97.65%)
Mutual labels:  neo4j

Py2neo

PyPI version PyPI Downloads License Coverage Status

Py2neo is a client library and toolkit for working with Neo4j from within Python applications. The library supports both Bolt and HTTP and provides a high level API, an OGM, admin tools, a Cypher lexer for Pygments, and many other bells and whistles.

Command line tooling has been removed from the library in py2neo 2021.2. This functionality now exists in the separate ipy2neo project.

As of version 2021.1, py2neo contains full support for routing, as exposed by a Neo4j cluster. This can be enabled using a neo4j://... URI or by passing routing=True to a Graph constructor.

Installation & Compatibility

To install the latest release of py2neo, simply use:

$ pip install py2neo

The following versions of Python and Neo4j (all editions) are supported:

Neo4j Python 3.5+ Python 2.7
4.4 GitHub workflow status for tests against Neo4j 4.4 using py35+ GitHub workflow status for tests against Neo4j 4.4 using py27
4.3 GitHub workflow status for tests against Neo4j 4.3 using py35+ GitHub workflow status for tests against Neo4j 4.3 using py27
4.2 GitHub workflow status for tests against Neo4j 4.2 using py35+ GitHub workflow status for tests against Neo4j 4.2 using py27
4.1 GitHub workflow status for tests against Neo4j 4.1 using py35+ GitHub workflow status for tests against Neo4j 4.1 using py27
4.0 GitHub workflow status for tests against Neo4j 4.0 using py35+ GitHub workflow status for tests against Neo4j 4.0 using py27
3.5 GitHub workflow status for tests against Neo4j 3.5 using py35+ GitHub workflow status for tests against Neo4j 3.5 using py27
3.4 GitHub workflow status for tests against Neo4j 3.4 using py35+ GitHub workflow status for tests against Neo4j 3.4 using py27

Note 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.

Quick Example

To run a query against a local database is straightforward:

>>> from py2neo import Graph
>>> graph = Graph("bolt://localhost:7687", auth=("neo4j", "password"))
>>> graph.run("UNWIND range(1, 3) AS n RETURN n, n * n as n_sq")
   n | n_sq
-----|------
   1 |    1
   2 |    4
   3 |    9

Releases & Versioning

As of 2020, py2neo has switched to Calendar Versioning, using a scheme of YYYY.N.M. Here, N is an incrementing zero-based number for each year, and M is a revision within that version (also zero-based).

No compatibility guarantees are given between versions, but as a general rule, a change in M should require little-to-no work within client applications, whereas a change in N may require some work. A change to the year is likely to require a more significant amount of work to upgrade.

Note that py2neo is developed on a rolling basis, so patches are not made to old versions. Users will instead need to install the latest release to adopt bug fixes.

More

For more information, read the handbook.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].