com3dian commited on
Commit
54f71b8
·
1 Parent(s): 0ba8479
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -15,8 +15,12 @@ def save_uploaded_file(uploaded_file):
15
  st.title('Paper2Slides')
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
 
 
15
  st.title('Paper2Slides')
16
 
17
  st.subheader('Upload paper in pdf format')
18
+
19
+ col1, col2 = st.columns(2)
20
+ with col1:
21
+ uploaded_file = st.file_uploader("Choose a file")
22
+ with col2:
23
+ option = st.selectbox(
24
  'Please select one of the parsing method.',
25
  ('monkey', 'x2d', 'lxml'))
26