Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 448 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 448 Bytes

streamlit_paste_clipboard

Paste clipboard image show

Installation instructions

pip install git+https://github.com/lixumin-zai/streamlit_paste_clipboard.git

streamlit run streamlit_paste_clipboard/example.py args --server.fileWatcherType none

Usage instructions

import streamlit as st

from streamlit_paste_clipboard import paste_clipboard

image = paste_clipboard()
if image:
    st.Image(image)