Update app.py
Browse files
app.py
CHANGED
|
@@ -186,8 +186,9 @@ try:
|
|
| 186 |
video_url = str(soup).split('<source src="')[1].split('" ')[0]
|
| 187 |
# Share the video through Streamlit
|
| 188 |
st.video(video_url)
|
| 189 |
-
|
| 190 |
except AttributeError:
|
| 191 |
st.write("Select Row to Display Video")
|
| 192 |
|
|
|
|
| 193 |
st.markdown('</div>', unsafe_allow_html=True)
|
|
|
|
| 186 |
video_url = str(soup).split('<source src="')[1].split('" ')[0]
|
| 187 |
# Share the video through Streamlit
|
| 188 |
st.video(video_url)
|
| 189 |
+
|
| 190 |
except AttributeError:
|
| 191 |
st.write("Select Row to Display Video")
|
| 192 |
|
| 193 |
+
st.markdown(markdown_text_end)
|
| 194 |
st.markdown('</div>', unsafe_allow_html=True)
|