rushankg commited on
Commit
28831ec
·
1 Parent(s): ba18f11

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -38,8 +38,8 @@ if container.button('Recommend by title'):
38
  index=np.where(coursedf['title'] == result)[0][0]
39
  course_id=coursedf.iloc[index,0]
40
  st.subheader(course_id+": "+result)
41
- st.write(course_df_new.iloc[index,3]) #Using the new coursedf because it has proper descriptions for each course
42
- link = "[ExploreCourses](https://explorecourses.stanford.edu/search?q="+course_id+"+"+result+")"
43
  st.markdown(link, unsafe_allow_html=True)
44
  st.divider()
45
 
@@ -49,7 +49,7 @@ if container.button('Recommend by description'):
49
  for result in rec_list:
50
  course_id=coursedf.iloc[index_new,0]
51
  st.subheader(course_id+": "+result)
52
- st.write(course_df_new.iloc[index_new,3]) #Using the new coursedf because it has proper descriptions for each course
53
- link = "[ExploreCourses](https://explorecourses.stanford.edu/search?q="+course_id+"+"+result+")"
54
  st.markdown(link, unsafe_allow_html=True)
55
  st.divider()
 
38
  index=np.where(coursedf['title'] == result)[0][0]
39
  course_id=coursedf.iloc[index,0]
40
  st.subheader(course_id+": "+result)
41
+ #st.write(course_df_new.iloc[index,3]) #Using the new coursedf because it has proper descriptions for each course
42
+ link = "[ExploreCourses](https://explorecourses.stanford.edu/search?q="+course_id+"+"+result.replace(" ","+")+")"
43
  st.markdown(link, unsafe_allow_html=True)
44
  st.divider()
45
 
 
49
  for result in rec_list:
50
  course_id=coursedf.iloc[index_new,0]
51
  st.subheader(course_id+": "+result)
52
+ #st.write(course_df_new.iloc[index_new,3]) #Using the new coursedf because it has proper descriptions for each course
53
+ link = "[ExploreCourses](https://explorecourses.stanford.edu/search?q="+course_id+"+"+result.replace(" ","+")+")"
54
  st.markdown(link, unsafe_allow_html=True)
55
  st.divider()