EdBianchi commited on
Commit
a56e96d
·
1 Parent(s): ab3d7cd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
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.columns(3)
83
  with col1:
84
- st.image(recs[0], use_column_width=True)
85
  st.write(plots[0])
86
  with col2:
87
- st.image(recs[1], use_column_width=True)
88
  st.write(plots[1])
89
  with col3:
90
- st.image(recs[2], use_column_width=True)
91
  st.write(plots[2])
92
 
93
  col4, col5, col6 = st.columns(3)
94
  with col4:
95
- st.image(recs[3], use_column_width=True)
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])