From a9a1f6c1ab7dbdd11b96d0126ccca27a2c686fba Mon Sep 17 00:00:00 2001 From: davebshow <davebshow@gmail.com> Date: Fri, 10 Mar 2017 15:26:01 -0500 Subject: [PATCH] couple little fixes in readme --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cd603cd..752bad7 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ `aiogremlin` is a port of the official `Gremlin-Python` designed for integration with event loop based asynchronous Python networking libraries, including `asyncio`, -`aiohttp`, `tornado`, and `curio`. It uses the `async/await` syntax introduced +`aiohttp`, and `tornado`. It uses the `async/await` syntax introduced in PEP 492, and is therefore Python 3.5+ only. `aiogremlin` tries to follow `Gremlin-Python` as closely as possible both in terms @@ -29,6 +29,7 @@ async def go(loop): 'ws://localhost:8182/gremlin', 'g') g = Graph().traversal().withRemote(remote_connection) vertices = await g.V().toList() + await remote_connection.close() return vertices -- GitLab