Skip to content
This repository has been archived by the owner on Jun 21, 2024. It is now read-only.

Commit

Permalink
✨ Testing Rich progress bars
Browse files Browse the repository at this point in the history
  • Loading branch information
davep committed Feb 1, 2024
1 parent 62998e6 commit 758faa1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions rich_progress.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import time
from rich.progress import track

sleep_time = 0.1
for i in track(range(100), description="Testing..."):
time.sleep(sleep_time)
sleep_time /= 0.9

0 comments on commit 758faa1

Please sign in to comment.