Is there a way to download huge and still growing file using partial-download feature ? It seems that code like this
import urllib
urllib.urlretrieve ("http://www.example.com/huge-growing-file", "huge-growing-file")
downloads file from scratch every time it executed. I'd like to fetch just the newly written data and download from scratch only if the source file becomes smaller (for example it has been rotated)