analist commited on
Commit
70d7fb2
1 Parent(s): 78748d1

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ st.title('Take your picture to the next level')
4
+
5
+ col1, col2 = st.columns([3, 1])
6
+
7
+ with col1:
8
+ st.camera_input('Post your picture')
9
+
10
+ with col2:
11
+ choice = st.selectbox('Scale to', ['x2', 'x3', 'x4'])
12
+