Moiz commited on
Commit
c3e839d
·
1 Parent(s): b302c0d
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -19,7 +19,7 @@ current_movie_index = {"index": 0}
19
  # Function to fetch movie details using the given movie ID
20
  def fetch_movie_info(movie_id):
21
  api_key = "f2443b04"
22
- url = f"http://www.omdbapi.com/?apikey={api_key}&i={movie_id}"
23
  response = requests.get(url)
24
 
25
  if response.status_code == 200:
 
19
  # Function to fetch movie details using the given movie ID
20
  def fetch_movie_info(movie_id):
21
  api_key = "f2443b04"
22
+ url = f"http://www.omdbapi.com/?apikey={api_key}&i={movie_id}&plot=full"
23
  response = requests.get(url)
24
 
25
  if response.status_code == 200: