Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -79,20 +79,20 @@ with st.spinner("Getting the best movies..."):
|
|
79 |
|
80 |
# recommendation cols
|
81 |
st.write("## What to watch next....")
|
82 |
-
col1, col2, col3 = st.
|
83 |
with col1:
|
84 |
-
st.image(recs[0]
|
85 |
st.write(plots[0])
|
86 |
with col2:
|
87 |
-
st.image(recs[1]
|
88 |
st.write(plots[1])
|
89 |
with col3:
|
90 |
-
st.image(recs[2]
|
91 |
st.write(plots[2])
|
92 |
|
93 |
col4, col5, col6 = st.columns(3)
|
94 |
with col4:
|
95 |
-
st.image(recs[3]
|
96 |
st.write(plots[3])
|
97 |
with col5:
|
98 |
st.image(recs[4])
|
|
|
79 |
|
80 |
# recommendation cols
|
81 |
st.write("## What to watch next....")
|
82 |
+
col1, col2, col3 = st.beta_columns(3)
|
83 |
with col1:
|
84 |
+
st.image(recs[0])
|
85 |
st.write(plots[0])
|
86 |
with col2:
|
87 |
+
st.image(recs[1])
|
88 |
st.write(plots[1])
|
89 |
with col3:
|
90 |
+
st.image(recs[2])
|
91 |
st.write(plots[2])
|
92 |
|
93 |
col4, col5, col6 = st.columns(3)
|
94 |
with col4:
|
95 |
+
st.image(recs[3])
|
96 |
st.write(plots[3])
|
97 |
with col5:
|
98 |
st.image(recs[4])
|