com3dian commited on
Commit
0ba8479
·
1 Parent(s): 0a53d39
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -16,11 +16,11 @@ st.title('Paper2Slides')
16
 
17
  st.subheader('Upload paper in pdf format')
18
  uploaded_file = st.file_uploader("Choose a file")
19
-
20
- if uploaded_file is not None:
21
- option = st.selectbox(
22
  'Please select one of the parsing method.',
23
  ('monkey', 'x2d', 'lxml'))
 
 
24
 
25
  st.write(uploaded_file.name)
26
  bytes_data = uploaded_file.getvalue()
 
16
 
17
  st.subheader('Upload paper in pdf format')
18
  uploaded_file = st.file_uploader("Choose a file")
19
+ option = st.selectbox(
 
 
20
  'Please select one of the parsing method.',
21
  ('monkey', 'x2d', 'lxml'))
22
+
23
+ if uploaded_file is not None:
24
 
25
  st.write(uploaded_file.name)
26
  bytes_data = uploaded_file.getvalue()