Moiz commited on
Commit
d3ad890
Β·
1 Parent(s): 76f3809

movie posters added

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -56,9 +56,12 @@ def display_movie(action, profile):
56
  # Get the IMDb ID from the 'id' column
57
  movie_id = movie.get('id', 'Unknown') # Use 'Unknown' if 'id' doesn't exist
58
 
 
 
 
59
  details = {
60
  "title": f'<a href="https://www.imdb.com/title/{movie_id}/" target="_blank" style="font-size: 36px; text-decoration: none; color: inherit; font-family: Arial, sans-serif;">{movie["Title"]}</a>',
61
- "poster_placeholder": "πŸŽ₯ Movie Poster Placeholder πŸŽ₯",
62
  "ratings": f"""
63
  <div style="display: flex; gap: 15px; align-items: center; text-align: center;">
64
  <div>
 
56
  # Get the IMDb ID from the 'id' column
57
  movie_id = movie.get('id', 'Unknown') # Use 'Unknown' if 'id' doesn't exist
58
 
59
+ # Replace placeholder with actual poster URL
60
+ poster_url = movie.get("Poster", "πŸŽ₯ Movie Poster Placeholder πŸŽ₯") # Default placeholder if Poster is missing
61
+
62
  details = {
63
  "title": f'<a href="https://www.imdb.com/title/{movie_id}/" target="_blank" style="font-size: 36px; text-decoration: none; color: inherit; font-family: Arial, sans-serif;">{movie["Title"]}</a>',
64
+ "poster_placeholder": f'<img src="{poster_url}" alt="Poster" style="width: 100%; max-width: 300px; height: auto;"/>', # Display the poster image
65
  "ratings": f"""
66
  <div style="display: flex; gap: 15px; align-items: center; text-align: center;">
67
  <div>