Metadata-Version: 2.0
Name: aioneo4j
Version: 0.0.5
Summary: asyncio client for neo4j
Home-page: https://github.com/wikibusiness/aioneo4j
Author: wikibusiness
Author-email: osf@wikibusiness.org
License: UNKNOWN
Description-Content-Type: UNKNOWN
Keywords: neo4j,asyncio,aiohttp
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: aiohttp (>=2.3.6)
Requires-Dist: async-timeout

aioneo4j
==========

:info: asyncio client for neo4j

.. image:: https://img.shields.io/travis/wikibusiness/aioneo4j.svg
    :target: https://travis-ci.org/wikibusiness/aioneo4j

.. image:: https://img.shields.io/pypi/v/aioneo4j.svg
    :target: https://pypi.python.org/pypi/aioneo4j

Installation
------------

.. code-block:: shell

    pip install aioneo4j

Usage
-----

.. code-block:: python

    import asyncio

    from aioneo4j import Neo4j


    async def go():
        async with Neo4j('http://neo4j:neo4j@127.0.0.1:7474/') as neo4j:
            data = await neo4j.data()
            assert bool(data)


    loop = asyncio.get_event_loop()
    loop.run_until_complete(go())
    loop.close()


