There is a long list of files that I would like to download via a python script. When I try to download manually (by copying the url and paste it into the address bar), it shows me the full size of the file and download it completely:
However, when I try to download using urllib.request
import urllib.request
url = 'http://..... .zip'
urllib.request.urlretrieve(url, './myfile.zip')
It only download the first 64 KB of the file. How I can download the whole file using such a Python script?