Can wget and rich communicate with each other? And if so, how?
import time
from rich.progress import track
import wget
url_1 = "https://server/model.txt"
for i in track(range(20), description="Processing..."):
wget.download(url_1)
At When I am from this site (example) using the command wget then the process bar freezes in place and does not show how much time is left until the end of the download