@@ -87,22 +82,3 @@ For convenience, `aiogremlin` also provides a method `execute`, which is equival
>>>loop.run_until_complete(gc.close())# Explicitly close client!!!
>>>loop.close()
```
To avoid the explicit client close, `aiogremlin` provides a class called `ConnectionContextManager`. To create an instance of `ConnectionContextManager`, get a connection from a `WebSocketPool` instance as follows:
```python
>>>loop=asyncio.get_event_loop()
# Note that url is a required positional param here!
# Pool does not open any connections until requested.