Create run.streamlit.py
Browse files- 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)
|