M
Modular10mo ago
Ryulord

awdy: A tqdm-like progress bar for Mojo

https://github.com/Ryul0rd/awdy/tree/main Example code:
with awdy(total=100, leave=True) as pb:
for i in range(100):
sleep(0.05)
pb.update()
if i == 49:
awdy.write('Halfway done!')
with awdy(total=100, leave=True) as pb:
for i in range(100):
sleep(0.05)
pb.update()
if i == 49:
awdy.write('Halfway done!')
GitHub
GitHub - Ryul0rd/awdy: Are We Done Yet (awdy) is a tqdm-like progre...
Are We Done Yet (awdy) is a tqdm-like progress bar written in pure Mojo. - Ryul0rd/awdy
No description
1 Reply
Jack Clayton
Jack Clayton9mo ago
Nice!

Did you find this page helpful?