rushankg commited on
Commit
2b57cad
·
1 Parent(s): bc648c2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -45,6 +45,8 @@ if maincol1.button('Recommend by title',use_container_width=True):
45
  st.write(course_df_new.iloc[index,3]) #Using the new coursedf because it has proper descriptions for each course
46
  link = "[ExploreCourses](https://explorecourses.stanford.edu/search?q="+course_id+"+"+result.replace(" ","+")+")"
47
  st.markdown(link, unsafe_allow_html=True)
 
 
48
  st.divider()
49
 
50
  if maincol2.button('Recommend by description',use_container_width=True):
@@ -58,4 +60,6 @@ if maincol2.button('Recommend by description',use_container_width=True):
58
  st.write(course_df_new.iloc[index_new,3]) #Using the new coursedf because it has proper descriptions for each course
59
  link = "[ExploreCourses](https://explorecourses.stanford.edu/search?q="+course_id+"+"+result.replace(" ","+")+")"
60
  st.markdown(link, unsafe_allow_html=True)
 
 
61
  st.divider()
 
45
  st.write(course_df_new.iloc[index,3]) #Using the new coursedf because it has proper descriptions for each course
46
  link = "[ExploreCourses](https://explorecourses.stanford.edu/search?q="+course_id+"+"+result.replace(" ","+")+")"
47
  st.markdown(link, unsafe_allow_html=True)
48
+ link = "https://carta-beta.stanford.edu/results/"+course_id
49
+ st.markdown(link, unsafe_allow_html=True)
50
  st.divider()
51
 
52
  if maincol2.button('Recommend by description',use_container_width=True):
 
60
  st.write(course_df_new.iloc[index_new,3]) #Using the new coursedf because it has proper descriptions for each course
61
  link = "[ExploreCourses](https://explorecourses.stanford.edu/search?q="+course_id+"+"+result.replace(" ","+")+")"
62
  st.markdown(link, unsafe_allow_html=True)
63
+ link = "https://carta-beta.stanford.edu/results/"+course_id
64
+ st.markdown(link, unsafe_allow_html=True)
65
  st.divider()