Metadata-Version: 2.1
Name: st-copy-to-clipboard
Version: 0.1.0
Summary: Streamlit component that allows you to copy text to the clipboard.
Author: mmz-001
Author-email: mmzappdev@gmail.com
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# 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")



```
