We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d176ee5 commit c7eeebeCopy full SHA for c7eeebe
CHANGELOG.md
@@ -15,6 +15,18 @@
15
16
2. Logs a traceback to SearchCommand.logger. This is old behavior.
17
18
+* Made ResponseReader more streamlike, so that it can be wrapped in an
19
+ io.BufferedReader to realize a significant performance gain.
20
+
21
+ *Example usage*
22
23
+ ```
24
+ import io
25
+ ...
26
+ response = job.results(count=maxRecords, offset=self._offset)
27
+ resultsList = results.ResultsReader(io.BufferedReader(response))
28
29
30
### Bug fixes
31
32
1. Addressed a problem in the results reader running under Python 2.6.
0 commit comments