Python Forum

Full Version: python download manager with progressbar (not gui)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am trying to make a python program to download files . (simple download manager)

And i want it to be simple and it should have a progressbar ,also displaying the file size . LIKE THE PHOTO BELOW

I tried code like this :

import urllib.request

def downloadfile():
 url = input("Enter download link : ")
 nm = input("Enter name with extention : ")
 urllib.request.urlretrieve(url,nm)

downloadfile()```
**Image is screenshot of cmd when installing python module**

[Image: sDnJm.png]
https://i.stack.imgur.com/sDnJm.png
tqdm works fine for this.
I have tutorial here.
There i also use Click my clear favorite for making command line interfaces.