Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 701 Bytes

README.rst

File metadata and controls

37 lines (23 loc) · 701 Bytes

aioneo4j

info:asyncio client for neo4j

Installation

pip install aioneo4j

Usage

import asyncio

from aioneo4j import Neo4j


async def go():
    async with Neo4j('http://neo4j:[email protected]:7474/') as neo4j:
        data = await neo4j.data()
        assert bool(data)


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