Metadata-Version: 2.1
Name: streamlit-keyup-react
Version: 0.1.0
Summary: Text input that renders on keyup
Home-page: https://github.com/animebing/streamlit-keyup-react
Author: Yanbing Dong
Author-email: yanbing_dong@hotmail.com
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: streamlit >=1.2

# streamlit-keyup-react

React reimplementation of [st_keyup](https://github.com/blackary/streamlit-keyup), the code is modified from [component-template](https://github.com/streamlit/component-template/tree/master/template)


## Installation

`pip install streamlit-keyup-react`

## Usage

```python
import streamlit as st
from st_keyup_react import st_keyup_react

value = st_keyup_react('input', debounce=300)
st.write(value)
```
