Metadata-Version: 2.1
Name: input_field_component
Version: 0.0.2
Summary: Streamlit component that allows you to create sentence with input field
Home-page: 
Author: Timonin Danila
Author-email: dantimonin@zoho.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.36.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-custom-component

Streamlit component that allows you to do X

## Installation instructions

```sh
pip install bestcomponentever
```

## Usage instructions

```python
import streamlit as st

from bestcomponentevers import input_field

value = input_field("I love [G_A_P] apples")

st.write(value)
```
