swtiched to tqdm progress bars

This commit is contained in:
Benoît Sierro
2021-05-12 11:04:53 +02:00
parent 2d9d24da16
commit aae35e2b63
11 changed files with 393 additions and 82 deletions

6
play.py Normal file
View File

@@ -0,0 +1,6 @@
from tqdm import tqdm
import time
import random
for i in tqdm(range(100), smoothing=0):
time.sleep(random.random())