Sign up to take part
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Added on February 20, 2019 10:35PM
Likes: 0
Replies: 1
Hi, where can I find an example of a chunked download of the file from the Folder python object (dataiku.core.managed_folder.Folder)?
In this example I would like to write by a specified chunk size, for example print out something after every 1MB:
x=in_folder.get_download_stream( "/"+f )
with out_folder.get_writer(f) as writer:
parts = list( x.read_chunked(1024*1024) )
for part in parts:
print('Part')
writer.write( part )
print('File uploaded')
ResponseNotChunked: Response is not chunked. Header 'transfer-encoding: chunked' is missing.
Thanks