I am trying to upload the file in python and i want to upload the file in resumable mode i.e when the internet connection resume , the file upload resume from the previous stage.
Is there any specific protocol that supports resumable file upload.
Thanks in advance
So what you need is to seek the file and send a REST command to tell the server to download from the right location.
Here is code that would try untill it finishes to upload with resume, also debug is on so you can follow:
The magic line is:
Which has
rest=rest_pos.Source
Also some code taken from here