Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
python3-rich /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
README.md
264
B
-rw-r--r--
2023-01-28 10:18
attrs.py
1.01
KB
-rw-r--r--
2023-01-28 10:18
bars.py
417
B
-rw-r--r--
2023-01-28 10:18
columns.py
748
B
-rw-r--r--
2023-01-28 10:18
cp_progress.py
571
B
-rw-r--r--
2023-01-28 10:18
downloader.py
2.21
KB
-rw-r--r--
2023-01-28 10:18
dynamic_progress.py
3.93
KB
-rw-r--r--
2023-01-28 10:18
exception.py
919
B
-rw-r--r--
2023-01-28 10:18
export.py
1.65
KB
-rw-r--r--
2023-01-28 10:18
file_progress.py
423
B
-rw-r--r--
2023-01-28 10:18
fullscreen.py
5.36
KB
-rw-r--r--
2023-01-28 10:18
group.py
206
B
-rw-r--r--
2023-01-28 10:18
group2.py
224
B
-rw-r--r--
2023-01-28 10:18
highlighter.py
525
B
-rw-r--r--
2023-01-28 10:18
jobs.py
957
B
-rw-r--r--
2023-01-28 10:18
justify.py
349
B
-rw-r--r--
2023-01-28 10:18
justify2.py
426
B
-rw-r--r--
2023-01-28 10:18
layout.py
1.09
KB
-rw-r--r--
2023-01-28 10:18
link.py
192
B
-rw-r--r--
2023-01-28 10:18
listdir.py
1011
B
-rw-r--r--
2023-01-28 10:18
live_progress.py
1.34
KB
-rw-r--r--
2023-01-28 10:18
log.py
1.9
KB
-rw-r--r--
2023-01-28 10:18
overflow.py
370
B
-rw-r--r--
2023-01-28 10:18
padding.py
132
B
-rw-r--r--
2023-01-28 10:18
print_calendar.py
1.87
KB
-rw-r--r--
2023-01-28 10:18
rainbow.py
441
B
-rw-r--r--
2023-01-28 10:18
recursive_error.py
324
B
-rw-r--r--
2023-01-28 10:18
repr.py
589
B
-rw-r--r--
2023-01-28 10:18
save_table_svg.py
846
B
-rw-r--r--
2023-01-28 10:18
screen.py
357
B
-rw-r--r--
2023-01-28 10:18
spinners.py
533
B
-rw-r--r--
2023-01-28 10:18
status.py
307
B
-rw-r--r--
2023-01-28 10:18
suppress.py
489
B
-rw-r--r--
2023-01-28 10:18
table.py
693
B
-rw-r--r--
2023-01-28 10:18
table_movie.py
4.46
KB
-rw-r--r--
2023-01-28 10:18
top_lite_simulator.py
2.11
KB
-rw-r--r--
2023-01-28 10:18
tree.py
1.71
KB
-rw-r--r--
2023-01-28 10:18
Save
Rename
from time import sleep from rich.panel import Panel from rich.progress import Progress JOBS = [100, 150, 25, 70, 110, 90] progress = Progress(auto_refresh=False) master_task = progress.add_task("overall", total=sum(JOBS)) jobs_task = progress.add_task("jobs") progress.console.print( Panel( "[bold blue]A demonstration of progress with a current task and overall progress.", padding=1, ) ) with progress: for job_no, job in enumerate(JOBS): progress.log(f"Starting job #{job_no}") sleep(0.2) progress.reset(jobs_task, total=job, description=f"job [bold yellow]#{job_no}") progress.start_task(jobs_task) for wait in progress.track(range(job), task_id=jobs_task): sleep(0.01) progress.advance(master_task, job) progress.log(f"Job #{job_no} is complete") progress.log( Panel(":sparkle: All done! :sparkle:", border_style="green", padding=1) )