Metadata-Version: 2.1
Name: streamlit-image-coordinates
Version: 0.1.0
Summary: Streamlit component that displays an image and returns the coordinates when you click on it
Author: Zachary Blackwood
Author-email: zachary@streamlit.io
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: streamlit (>=1.2)
Requires-Dist: jinja2

# streamlit-image-coordinates

Streamlit component that displays an image and returns the coordinates when you click on it

## Installation instructions

```sh
pip install streamlit-image-coordinates
```

## Usage instructions

```python
import streamlit as st

from streamlit_image_coordinates import streamlit_image_coordinates

value = streamlit_image_coordinates("https://placekidden.com/200/300")

st.write(value)
```
