Metadata-Version: 2.1
Name: streamlit-card
Version: 0.0.4
Summary: A streamlit component, to make UI cards
Home-page: https://github.com/gamcoh/st-card
Author: gamcoh
Author-email: cohengamliel8@gmail.com
Keywords: card streamlit streamlit-component
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: streamlit (>=0.63)

# st-card

Streamlit Component, for a UI card

authors - [@gamcoh](https://github.com/gamcoh) @Pernod Ricard

## Installation

Install `streamlit-card` with pip
```bash
pip install streamlit-card 
```

usage, import the `card` function from `streamlit_card`
```py
from streamlit_card import card

hasClicked = card(
  title="Hello World!",
  text="Some description",
  image="http://placekitten.com/200/300"
  url="https://github.com/gamcoh/st-card"
)
```
   
