Spaces:
Sleeping
Sleeping
HaggiVaggi
commited on
Commit
·
ad15be2
1
Parent(s):
6696b4f
Update app.py
Browse files
app.py
CHANGED
@@ -46,11 +46,17 @@ st.info('🌟Если не знаете, что посмотреть, нажми
|
|
46 |
|
47 |
# Отображаем HTML-разметку в Streamlit
|
48 |
if st.button("Сгенерировать 🎲"):
|
49 |
-
# Получение случайных 10
|
50 |
-
random_rows = df[['movie_title', 'description']].sample(n=10).reset_index(drop=True)
|
51 |
random_rows.index = random_rows.index + 1
|
|
|
52 |
|
53 |
-
|
54 |
-
|
55 |
-
st.
|
|
|
|
|
|
|
|
|
|
|
56 |
|
|
|
46 |
|
47 |
# Отображаем HTML-разметку в Streamlit
|
48 |
if st.button("Сгенерировать 🎲"):
|
49 |
+
# Получение случайных 10 строк, включая 'image_url' и 'actors'
|
50 |
+
random_rows = df[['movie_title', 'description', 'actors', 'image_url', 'page_url']].sample(n=10).reset_index(drop=True)
|
51 |
random_rows.index = random_rows.index + 1
|
52 |
+
st.markdown(f"<span style='font-size:{20}px; color:violet'>{'Сегодня мы подобрали для вас следующие фильмы:'}</span>", unsafe_allow_html=True)
|
53 |
|
54 |
+
|
55 |
+
|
56 |
+
for i in range(5): st.markdown(f"<span style='font-size:{20}px; color:purple'>{random_rows['movie_title'].iloc[i]}</span>", unsafe_allow_html=True)
|
57 |
+
col1, col2 = st.columns([2, 1])
|
58 |
+
col1.info(random_rows['description'].iloc[i])
|
59 |
+
col1.markdown(f"**В ролях:** {random_rows['actors'].iloc[i]}")
|
60 |
+
col1.markdown(f"**Фильм можно посмотреть [здесь]({random_rows['page_url'].iloc[i]})**")
|
61 |
+
col2.image(random_rows['image_url'].iloc[i], caption=random_rows['movie_title'].iloc[i], width=200)
|
62 |
|