import streamlit as st #UIApp starts here st.set_page_config(page_title="Python - Face Censoring", page_icon=":robot:") st.header("Python - Face Censoring") submit=st.button('See Myself') if submit: picture = st.camera_input("Take a picture") if picture: st.image(picture)