Metadata-Version: 2.1
Name: quickbar
Version: 0.1.1.post0
Summary: A small python package to make rich progress bars as easy as 1,2,3.
Home-page: https://github.com/arnos-stuff/quickbar
Author: volt-france
Author-email: arno.veletanlic@volteuropa.org
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: ipywidgets (>=8.0.7,<9.0.0)
Requires-Dist: rich (>=13.4.2,<14.0.0)
Requires-Dist: typer (>=0.9.0,<0.10.0)
Description-Content-Type: text/markdown

# 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 !

