fcernafukuzaki commited on
Commit
2b2dcb2
·
verified ·
1 Parent(s): e4cde52

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.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)