Metadata-Version: 2.1
Name: st-pagination-buttons
Version: 0.1.2
Summary: Streamlit pagination buttons component
Home-page: https://github.com/mysiar-org/st-pagination-buttons
Author: Piotr Synowiec
Author-email: psynowiec@gmail.com
License: MIT
Keywords: streamlit,streamlit-component
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"

# Streamlit pagination-buttons component

---

Streamlit pagination buttons component


## Installation instructions

```sh
pip install st-pagination-buttons
```

## Usage instructions

```python
import streamlit as st

from st_pagination_buttons import st_pagination_buttons

clicked_button = st_pagination_buttons()

st.write(f"Clicked: {clicked_button}")
```
