From ac599de509bf2577e42ec6c56ade70e388aba4b9 Mon Sep 17 00:00:00 2001 From: davebshow <davebshow@gmail.com> Date: Sat, 2 May 2015 19:56:27 -0400 Subject: [PATCH] little fixes in readmes --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eb2d649..b361a1b 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ The `GremlinClient` communicates asynchronously with the Gremlin Server using we >>> from aiogremlin import GremlinClient ``` -The Gremlin Server responds with messages in chunks, `GremlinClient.submit` submits a script to the server, and returns a `GremlinResponse` object. This object provides two methods: `get` and `stream`. `get` collects all of the response messages and returns them as a Python list. `stream` returns an object of the type `GremlinResponseStream` that implements a method `read`. This allows you to read the response without loading all of the messages into memory. +The Gremlin Server responds with messages in chunks, `GremlinClient.submit` submits a script to the server, and returns a `GremlinResponse` object. This object provides the methods: `get` and the property `stream`. `get` collects all of the response messages and returns them as a Python list. `stream` returns an object of the type `GremlinResponseStream` that implements a method `read`. This allows you to read the response without loading all of the messages into memory. ```python -- GitLab