Skip to content
/ awdy Public

Are We Done Yet (awdy) is a tqdm-like progress bar written in pure Mojo.

License

Notifications You must be signed in to change notification settings

Ryul0rd/awdy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

awdy

Are We Done Yet (awdy) is a tqdm-like progress bar written in pure Mojo.

Basic usage

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!')

Basic usage result

Note that because Mojo doesn't support an Iterable trait yet, we can't do something like:

for thing in awdy(my_iterable):
    ...

License

MIT

About

Are We Done Yet (awdy) is a tqdm-like progress bar written in pure Mojo.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published