This video demonstrates how you can create a cool file downloader for terminal with a pretty progress bar.
--------------------------------------------------------
download
pip3 install tqdm
------------------------------------------
from tqdm import tqdm
import time
for i in tqdm(range(1000)):
time.sleep(0.01)
print("Download is complete")