Skip to content

Instantly share code, notes, and snippets.

@inazense
Created December 21, 2017 09:14
Show Gist options
  • Save inazense/6459ee5642406c3eefc7e2273d4441eb to your computer and use it in GitHub Desktop.
Save inazense/6459ee5642406c3eefc7e2273d4441eb 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