data.world-py
data.world-py copied to clipboard
Use requests `iter_content()` to defer the download of query results
Currently, query results are downloaded eagerly, in spite of the use of stream=True
. Instead, the query method should return an iterable leverage requests' iter_content()
to download the data on-demand.