I recently discovered httpie
(https://httpie.org) and liked it a lot. it's very simple to make requests for a remote server, specially when working with REST API requests.
But now I'm stucked with sending large files with httpie
.
It first load the entire file to memory so if file is too large, I get Memory Error:
http: error: Memory Error:
The command that generates this error is:
$ http -f POST www.example.com/upload/ field@file.raw
So anyone knows if there is a way to send large files in chunks with httpie
?
At least in official documentation I didn't found anything.