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