(May-19-2018, 05:01 PM)eddywinch82 Wrote: so that it shows the Files downloading/process as they are downloading, in the Python Program Shell ?You can use tqdm
from bs4 import BeautifulSoup import requests from tqdm import tqdm, trange url = 'http://web.archive.org/web/20070611232047/http://ultimatetraffic.flight1.net:80/utfiles.asp?mode=1&index=0' url_get = requests.get(url) soup = BeautifulSoup(url_get.content, 'lxml') b_tag = soup.find_all('b') for a in tqdm(b_tag): link = a.find('a')['href'] #print(link) f_name = link.split('id=')[-1] with open(f_name, 'wb') as f: f.write(requests.get(link).content)Running from command line cmder.
![[Image: 03BHuK.jpg]](https://imageshack.com/a/img924/4710/03BHuK.jpg)
Running from Python shell may get a file by file display.