Metadata-Version: 2.4
Name: streamlit-month-selector
Version: 0.0.1
Summary: this component offers you to input and choose single month from year
Author: Dmitry Usman
Author-email: dimausman@inbox.ru
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: streamlit>=1.2
Requires-Dist: jinja2
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# streamlit-month-selector

this component offers you to input and choose single month from year

## Installation instructions 

```sh
pip install streamlit-month-selector
```

## Usage instructions

```python
import streamlit as st

from streamlit_month_selector import streamlit_month_selector

value = streamlit_month_selector()

st.write(value)
