Metadata-Version: 2.1
Name: py2neo-history
Version: 2020.1a1
Summary: Python client library and toolkit for Neo4j
Home-page: https://py2neo.org/
Author: Nigel Small
Author-email: py2neo@nige.tech
License: Apache License, Version 2.0
Project-URL: Bug Tracker, https://github.com/technige/py2neo/issues
Project-URL: Documentation, https://py2neo.readthedocs.io/en/2020.1a1/
Project-URL: Source Code, https://github.com/technige/py2neo
Description: This is a copy of the py2neo package to restore the version history that got deleted.
        It's not possible to re-upload a deleted version of a package to PyPI.
        So if you rely on, for example, `py2neo ~= 4.1.0` in your project, you can simply switch to `py2neo-history ~= 4.1.0`.
        If your project works with py2neo 2021.2.3 or above, you can keep using `py2neo` as usual.
        
        Note that this project will not get any updates past version 2021.2.3.
        
        Py2neo
        ======
        .. image:: https://img.shields.io/github/v/release/technige/py2neo?sort=semver
           :target: https://github.com/technige/py2neo
           :alt: GitHub release
        
        .. image:: https://img.shields.io/github/license/technige/py2neo.svg
           :target: https://www.apache.org/licenses/LICENSE-2.0
           :alt: License
        
        .. image:: https://img.shields.io/travis/technige/py2neo/master.svg
           :target: https://travis-ci.org/technige/py2neo
           :alt: Build Status
        
        .. image:: https://coveralls.io/repos/github/technige/py2neo/badge.svg?branch=master
           :target: https://coveralls.io/github/technige/py2neo?branch=master
           :alt: Coverage Status
        
        
        **Py2neo** is a client library and toolkit for working with `Neo4j <https://neo4j.com/>`_ from within `Python <https://www.python.org/>`_ 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.
        
        When considering whether to use py2neo or the `official Python Driver for Neo4j <https://github.com/neo4j/neo4j-python-driver>`_, there is a trade-off to be made.
        Py2neo offers a larger surface, with both a higher level API and an OGM, but the official driver is fully supported by Neo4j.
        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 in an Enterprise environment where you require support, you likely need the official driver.
        
        As of version 2020.1.0, Py2neo contains **experimental** Bolt routing support, enabled using ``g = Graph(..., routing=True)``.
        Constructive feedback on this feature is very welcome, but note that it is not yet guaranteed to be stable in a production environment.
        
        
        Releases & Versioning
        ---------------------
        
        As of 2020, py2neo has switched to `Calendar Versioning <https://calver.org/>`_, 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.
        
        
        Installation
        ------------
        .. image:: https://img.shields.io/pypi/v/py2neo.svg
           :target: https://pypi.python.org/pypi/py2neo
           :alt: PyPI version
        
        .. image:: https://img.shields.io/pypi/dm/py2neo
           :target: https://pypi.python.org/pypi/py2neo
           :alt: PyPI Downloads
        
        To install the latest release of py2neo, simply use:
        
        .. code-block::
        
            $ pip install --upgrade py2neo
        
        To install the latest stable code from the GitHub master branch, use:
        
        .. code-block::
        
            $ pip install git+https://github.com/technige/py2neo.git@master#egg=py2neo
        
        
        Requirements
        ------------
        .. image:: https://img.shields.io/pypi/pyversions/py2neo.svg
           :target: https://www.python.org/
           :alt: Python versions
        
        .. image:: https://img.shields.io/badge/neo4j-3.4%20%7C%203.5%20%7C%204.0%20%7C%204.1-blue.svg
           :target: https://neo4j.com/
           :alt: Neo4j versions
        
        The following versions of Python and Neo4j (all editions) are supported:
        
        - Python 2.7 / 3.5 / 3.6 / 3.7 / 3.8
        - Neo4j 3.4 / 3.5 / 4.0 / 4.1 (the latest point release of each version is recommended)
        
        Py2neo provides support for the multi-database functionality added in Neo4j 4.0.
        More about this can be found in the documentation for the ``Graph`` class.
        
        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.
        
        
        More
        ----
        
        For more information, read the `handbook <http://py2neo.org/>`_.
        
Platform: UNKNOWN
Classifier: Development Status :: 6 - Mature
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Database
Classifier: Topic :: Database :: Database Engines/Servers
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Description-Content-Type: text/x-rst
