Metadata-Version: 2.2
Name: runqdm
Version: 1.0.1
Summary: A running progress bar package with animation
Home-page: https://github.com/hangilzzang/runqdm.git
Author: hangilzzang
Author-email: gkrwhddlwjqrl@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: setuptools
Requires-Dist: colorama
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

```bash
pip install runqdm
```

## What is runqdm?

runqdm visually represents the progress of your **running** code with a **running** person ASCII animation

## Usage Examples

```python
from runqdm import runqdm

for i in runqdm(range(10)):
    sum(x ** 2 for x in range(1, 10**7))  
```
```python
from runqdm import runqdm
import time

for i in runqdm([1,2,3,4,5]):
    time.sleep(2)
```
