Metadata-Version: 2.1
Name: st-img-carousel
Version: 0.0.5
Summary: Streamlit component that allows to create image carousel
Home-page: 
Author: Ahsanul Haque
Author-email: ahsanul.haque.ovi@gmail.com
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: devel

### Streamlit st-img-carousel component

Streamlit component for image-carousel:

#### Installation:

Install the component with : `pip install st-img-carousel`


#### Example:

```python

from st_img_carousel import img_carousel

def main():

    image_urls = [

    ]
    selected_img_url = img_carousel(image_urls=image_urls, height=200)

    if selected_img_url is not None:
        st.image(selected_img_url)

if __name__ == "__main__":
    main()
```

