JaredBailey commited on
Commit
a39974d
·
verified ·
1 Parent(s): 9d25cb7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -1
app.py CHANGED
@@ -1,3 +1,15 @@
1
  import streamlit as st
2
 
3
- st.write("Hi")
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import streamlit as st
2
 
3
+ st.write("Hi")
4
+
5
+ st.file_uploader(label="Upload a JPEG photo",
6
+ type=['jpg'],
7
+ accept_multiple_files=False,
8
+ key=None,
9
+ help='Due to image resolution limitations of the tool, only photos of a single page are expected to produce the intended result',
10
+ on_change=None,
11
+ args=None,
12
+ kwargs=None,
13
+ disabled=False,
14
+ label_visibility="visible"
15
+ )