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.
- Host: GitHub
- URL: https://github.com/arnos-stuff/quickbar
- Owner: arnos-stuff
- Created: 2023-07-28T00:29:23.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-07-28T00:42:47.000Z (almost 3 years ago)
- Last Synced: 2025-03-27T13:13:02.487Z (about 1 year ago)
- Language: Python
- Size: 81.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 !