Metadata-Version: 2.1
Name: stqdm
Version: 0.0.1
Summary: Easy progress bar for streamlit based on the awesome streamlit.progress and tqdm
Home-page: https://github.com/Wirg/stqdm
License: Apache-2.0
Keywords: streamlit,progressbar,tqdm
Author: Wirg
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: streamlit (>=0.71.0,<0.72.0)
Requires-Dist: tqdm (>=4.54.0,<5.0.0)
Project-URL: Repository, https://github.com/Wirg/stqdm
Description-Content-Type: text/markdown

# stqdm
![Tests](https://github.com/Wirg/stqdm/workflows/Tests/badge.svg)

stqdm is the simplest way to handle a progress bar in streamlit.

![demo gif](assets/demo.gif)

## How to install

```sh
pip install stqdm
```

## How to use

You can find some examples in `examples/`

### Use stqdm in main
```python
from time import sleep
from stqdm import stqdm

for _ in stqdm(range(50)):
    sleep(0.5)
```

### Use stqdm in sidebar
```python
from time import sleep
import streamlit as st
from stqdm import stqdm

for _ in stqdm(range(50), st_container=st.sidebar):
    sleep(0.5)
```

