I am using the mechanize library in python to download some large files from a server. I need to implement partial file download so that I can parallelize the download of the file. For that, I added the header "Range: bytes=0-499" to my request. But the server returns the file starting from the 499th byte.
The server uses HTTP 1.0. Is there a way to download the file file partially using python?