Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
+
)
|