Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -38,7 +38,7 @@ with st.sidebar:
|
|
38 |
st.write("Выбрано:", sphere)
|
39 |
|
40 |
job = st.selectbox(
|
41 |
-
"Выбери
|
42 |
st.write("Выбрано:", job)
|
43 |
|
44 |
# st.write(df.columns)
|
@@ -84,8 +84,9 @@ with st.sidebar:
|
|
84 |
|
85 |
list_skills = []
|
86 |
for i in sorted(set(df1['Необходимые навыки'])):
|
87 |
-
|
88 |
if skill != '-':
|
|
|
89 |
list_skills.append(i)
|
90 |
|
91 |
# python = st.checkbox("Python", key=f"{i+1}mlr")
|
|
|
38 |
st.write("Выбрано:", sphere)
|
39 |
|
40 |
job = st.selectbox(
|
41 |
+
"Выбери профессию:", options=list(df1['Должность'].unique()), key=2)
|
42 |
st.write("Выбрано:", job)
|
43 |
|
44 |
# st.write(df.columns)
|
|
|
84 |
|
85 |
list_skills = []
|
86 |
for i in sorted(set(df1['Необходимые навыки'])):
|
87 |
+
|
88 |
if skill != '-':
|
89 |
+
skill = st.checkbox(i, key=f"{i}")
|
90 |
list_skills.append(i)
|
91 |
|
92 |
# python = st.checkbox("Python", key=f"{i+1}mlr")
|