Create app.py
Browse files
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 |
+
|