Skip to content

Instantly share code, notes, and snippets.

@TonyDiana
Forked from inazense/barraProgresoTerminal.py
Created February 20, 2021 05:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TonyDiana/9ef830067c7f1c8ebd716304fd416a41 to your computer and use it in GitHub Desktop.
Save TonyDiana/9ef830067c7f1c8ebd716304fd416a41 to your computer and use it in GitHub Desktop.
Genera una barra de progreso en la terminal
# -*- coding: utf-8 -*-
from tqdm import tqdm # Requiere instalar la librería -> pip install tqdm
from time import sleep
tareasQueRealizar = 100;
for i in tqdm(range(tareasQueRealizar)):
sleep(0.2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment