Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -22,7 +22,7 @@ if st.button('Recommend') and user_description:
|
|
22 |
for idx in recommended_shows.index:
|
23 |
with st.container():
|
24 |
link = data.loc[idx, 'url']
|
25 |
-
poster_url = data.loc[idx, '
|
26 |
title = data.loc[idx, 'title']
|
27 |
description = data.loc[idx, 'description']
|
28 |
|
|
|
22 |
for idx in recommended_shows.index:
|
23 |
with st.container():
|
24 |
link = data.loc[idx, 'url']
|
25 |
+
poster_url = data.loc[idx, 'img']
|
26 |
title = data.loc[idx, 'title']
|
27 |
description = data.loc[idx, 'description']
|
28 |
|