-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrich_exps.py
48 lines (40 loc) · 1.11 KB
/
rich_exps.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from rich.progress import track
import time
from rich.progress import Progress
from rich.progress import (
BarColumn,
DownloadColumn,
TextColumn,
TransferSpeedColumn,
TimeRemainingColumn,
Progress,
TaskID,
)
progress = Progress(
TextColumn("[bold blue]{task.fields[A]}", justify="right"),
BarColumn(bar_width=None),
"[progress.percentage]{task.percentage:>3.1f}%",
"•",
DownloadColumn(),
"•",
TransferSpeedColumn(),
"•",
TimeRemainingColumn(),
)
# progress = Progress(
# "[progress.description]{task.description}",
# BarColumn(),
# "[progress.percentage]{task.percentage:>3.0f}%",
# TimeRemainingColumn(),
# )
A = 0
with progress:
task1 = progress.add_task("[red]Downloading...", A=A, total=1000)
task2 = progress.add_task("[green]Processing...", A=A, total=1000)
task3 = progress.add_task("[cyan]Cooking...", A=A, total=1000)
while not progress.finished:
A += 1
progress.update(task1, advance=0.5)
progress.update(task2, advance=0.3)
progress.update(task3, advance=0.9)
time.sleep(0.02)