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 :
![[Image: sDnJm.png]](https://i.stack.imgur.com/sDnJm.png)
https://i.stack.imgur.com/sDnJm.png
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)
https://i.stack.imgur.com/sDnJm.png
