Abysss commited on
Commit
8458d84
1 Parent(s): b4659b9

Create run.streamlit.py

Browse files
Files changed (1) hide show
  1. run.streamlit.py +6 -0
run.streamlit.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ picture = st.camera_input("Take a picture")
4
+
5
+ if picture:
6
+ st.image(picture)