Metadata-Version: 2.1
Name: streamlit-link-button-extended
Version: 0.2.3
Summary: Streamlit Component that allows the developer to track when it's been clicked
Author: Alexander Rogiers
Author-email: alexander.rogiers@ugent.be
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: streamlit>=1.2
Requires-Dist: jinja2

# streamlit-link-button-extended

Streamlit Component that allows the developer to track when it's been clicked

## Installation instructions 

```sh
pip install streamlit-link-button-extended
```

## Usage instructions

```python
import streamlit as st

from streamlit_link_button_extended import streamlit_link_button_extended

label = "Google"
url = "https://www.google.com"

streamlit_link_button_extended(label, url, key="google_link_button")

