Metadata-Version: 2.1
Name: slider-with-buttons
Version: 0.0.4
Summary: Streamlit component that allows you to control the slider with buttons.
Home-page: 
Author: Masahiro Kisono
Author-email: mkisono@gmail.com
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: streamlit >=0.63
Provides-Extra: devel
Requires-Dist: wheel ; extra == 'devel'
Requires-Dist: pytest ==7.4.0 ; extra == 'devel'
Requires-Dist: playwright ==1.39.0 ; extra == 'devel'
Requires-Dist: requests ==2.31.0 ; extra == 'devel'
Requires-Dist: pytest-playwright-snapshot ==1.0 ; extra == 'devel'
Requires-Dist: pytest-rerunfailures ==12.0 ; extra == 'devel'

# slider-with-buttons

Streamlit component that allows you to control the slider with buttons.

## Installation instructions

```sh
pip install slider-with-buttons
```

## Usage instructions

```python
import streamlit as st
from slider_with_buttons import slider

value = slider("Player Win %", 50)
```
