May-13-2018, 01:47 AM
Hello all,
I am a new member and newbie in python, trying to write a simple code that downloads a file and put it in a directory with wget, looking to add download progress with wget, any help?
I am a new member and newbie in python, trying to write a simple code that downloads a file and put it in a directory with wget, looking to add download progress with wget, any help?
import wget
print ('Download starting ...')
url = 'http://speedtest.tele2.net/100MB.zip'
wget.download (url, 'D:\Python Project\100MB.zip')
