Metadata-Version: 2.1
Name: streamlit-quill2
Version: 0.0.5
Summary: Quill component for Streamlit
Home-page: https://github.com/bkdevinci/streamlit-quill
Author: bkdevinci
Author-email: 
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# 📝 Streamlit Quill

[![GitHub][github_badge]][github_link] [![PyPI][pypi_badge]][pypi_link]

## Installation

```sh
pip install streamlit-quill2
```

## Getting started

```python
import streamlit as st

from streamlit_quill import st_quill

# Spawn a new Quill editor
content = st_quill()

# Display editor's content as you type
content
```

## Demo

[![Open in Streamlit][share_badge]][share_link]

[![Preview][share_img]][share_link]

[share_badge]: https://static.streamlit.io/badges/streamlit_badge_black_white.svg
[share_link]: https://share.streamlit.io/okld/streamlit-gallery/main?p=quill-editor
[share_img]: https://raw.githubusercontent.com/okld/streamlit-quill/main/preview.png
[github_badge]: https://badgen.net/badge/icon/GitHub?icon=github&color=black&label
[github_link]: https://github.com/okld/streamlit-quill
[pypi_badge]: https://badgen.net/pypi/v/streamlit-quill?icon=pypi&color=black&label
[pypi_link]: https://pypi.org/project/streamlit-quill
