ModularM
Modular2y ago
1 reply
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!')
awdy_example.png
GitHub
Are We Done Yet (awdy) is a tqdm-like progress bar written in pure Mojo. - Ryul0rd/awdy
GitHub - Ryul0rd/awdy: Are We Done Yet (awdy) is a tqdm-like progre...
Was this page helpful?