Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aio-libs/aioneo4j
asyncio client for neo4j
https://github.com/aio-libs/aioneo4j
aiohttp asyncio neo4j
Last synced: 2 months ago
JSON representation
asyncio client for neo4j
- Host: GitHub
- URL: https://github.com/aio-libs/aioneo4j
- Owner: aio-libs
- License: mit
- Created: 2017-04-10T08:26:16.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-01-23T19:27:15.000Z (almost 3 years ago)
- Last Synced: 2024-11-06T01:05:47.205Z (2 months ago)
- Topics: aiohttp, asyncio, neo4j
- Language: Python
- Homepage: https://pypi.python.org/pypi/aioneo4j
- Size: 29.3 KB
- Stars: 30
- Watchers: 24
- Forks: 10
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
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/aioneo4jInstallation
------------.. code-block:: shell
pip install aioneo4j
Usage
-----.. code-block:: python
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()