Metadata-Version: 2.1
Name: st-copy-to-clipboard
Version: 0.1.4
Summary: Streamlit component that allows you to copy text to the clipboard.
Home-page: https://github.com/mmz-001/st-copy-to-clipboard
Author: mmz-001
Author-email: mmzappdev@gmail.com
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: streamlit (>=1.2)
Requires-Dist: jinja2

# st-copy-to-clipboard

Streamlit component that allows you to copy text to clipboard.

## Installation instructions

```sh
pip install st-copy-to-clipboard
```

## Usage instructions

```python
import streamlit as st

from st_copy_to_clipboard import st_copy_to_clipboard

# Render copy to clipboard button
st_copy_to_clipboard("Copy this to clipboard")



```
