An open API service indexing awesome lists of open source software.

https://github.com/arnos-stuff/quickbar

A small package to make rich progress bars one-liners.
https://github.com/arnos-stuff/quickbar

Last synced: about 1 year ago
JSON representation

A small package to make rich progress bars one-liners.

Awesome Lists containing this project

README

          

# A small rich TQDM clone

The goal of this small package is to turn the [rich package](https://rich.readthedocs.io/en/stable/introduction.html) into a clone of [tqdm](https://tqdm.github.io/).

For now, only basics are here:

```python

from quickbar import Quickbar

for item in Quickbar.track(iterator):
# do fancy stuff
print("I exist !")
```

This is the big upside of TQDM over rich: a less cool bar, but one line is enough !