Metadata-Version: 2.1
Name: nobar
Version: 1.0.1
Summary: Usefull progress "bar"
Home-page: https://github.com/NoromTin/nobar
Author: NoromTin
Author-email: aninelo@gmail.com
Project-URL: Documentation, https://github.com/NoromTin/nobar/blob/main/README.md
Keywords: progress bar
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.0
Description-Content-Type: text/markdown
License-File: LICENSE

nobar

- Why make a new progress bar?
- To have the right one! Pythonic, plain, which can be used)

Quick start:

pip install nobar

Examples:

```
from nobar import nobar

# With init. You'll see left itetations and time
nobar('taskname', 3000)
for i in range(3000):
    nobar('taskname')
    sleep(0.02)

# Without init. Only Passed 
for i in range(3000):
    nobar('taskname')
    sleep(0.02)
    
# Mixed. Few bars simultaneously.
nobar('task_1',3000)
nobar('task_2')
for i in range(3000):
    nobar('task_1')
    if i%3 == 0:
        nobar('task_2')
    sleep(0.02)
```

More arguments in the class

