How can we upload a file-like object (such as an http response, with an unknown content-length) without writing the file to disk or storing the entire file in-memory?
Seems like the upload_from_file option accepts a file-like object but enforces the size parameter (which isn't available in case of streaming uploads).
How can we upload a file-like object (such as an http response, with an unknown content-length) without writing the file to disk or storing the entire file in-memory?
Seems like the
upload_from_fileoption accepts a file-like object but enforces thesizeparameter (which isn't available in case of streaming uploads).