com3dian commited on
Commit
0499963
·
verified ·
1 Parent(s): 39f102c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -36,6 +36,13 @@ with col2:
36
  option = st.selectbox(
37
  'Select parsing method.',
38
  ('monkey', 'x2d', 'lxml'))
 
 
 
 
 
 
 
39
 
40
  if uploaded_file is not None:
41
 
 
36
  option = st.selectbox(
37
  'Select parsing method.',
38
  ('monkey', 'x2d', 'lxml'))
39
+ range_values = st.slider(
40
+ 'Select a range of values',
41
+ min_value=0,
42
+ max_value=100,
43
+ value=(25, 75)
44
+ )
45
+
46
 
47
  if uploaded_file is not None:
48