127 minute read

영화의 평점과 수익간의 관계 분석

import requests
import time

# OMDb API 설정
api_key = "99a74b7c"  # 제공하신 API 키를 사용합니다.
base_url = "http://www.omdbapi.com/"

# 수집할 영화의 ID 리스트
movie_ids = ["tt0105236", "tt2106476", "tt0042192", "tt0071853", "tt0071315", "tt0050986", "tt0012349", "tt0052311", "tt0083658", "tt0022100", "tt0066921", "tt0031679", "tt0062622", "tt0056592", "tt0045152", "tt0033467", "tt0086190", "tt0093058", "tt0040522", "tt0053604", "tt0070735", "tt0075314", "tt0036775", "tt0059578", "tt0087843", "tt0338013", "tt0086879", "tt0017136", "tt0089881", "tt0050976", "tt2380307", "tt1345836", "tt0112573", "tt0180093", "tt0044741", "tt0090605", "tt0022100", "tt0042192", "tt0012349", "tt0086190", "tt0031679", "tt0056592", "tt0071853", "tt0050986", "tt0045152", "tt0033467", "tt0053604", "tt0070735", "tt0075314", "tt0083658", "tt0087843", "tt0086879", "tt0093058", "tt0090605", "tt0105236", "tt0112573", "tt0180093", "tt0338013", "tt1345836", "tt2380307", "tt2106476", "tt0066921", "tt0062622", "tt0044741", "tt0050976", "tt0036775", "tt0059578", "tt0022100", "tt0042192", "tt0017136", "tt0089881", "tt0022100", "tt0052311", "tt0031679", "tt0056592", "tt0042192", "tt0033467", "tt0087843", "tt0045152", "tt0036775", "tt0053604", "tt0070735", "tt0075314", "tt0086190", "tt0083658", "tt0086879", "tt0093058", "tt0090605", "tt0105236", "tt0112573", "tt0180093", "tt0338013", "tt1345836", "tt2380307", "tt2106476", "tt0066921", "tt0062622", "tt0071315", "tt0071853", "tt0059578", "tt0050976", "tt0044741", "tt0052311", "tt0031679", "tt0056592", "tt0040522", "tt0033467", "tt0083658", "tt0086190", "tt0087843", "tt0093058", "tt0070735", "tt0075314", "tt0089881", "tt0086879", "tt0017136", "tt0022100", "tt0050986", "tt0036775", "tt0045152", "tt0053604", "tt0012349", "tt0112573", "tt0180093", "tt0338013", "tt2380307", "tt1345836", "tt0066921", "tt0062622", "tt0071315", "tt0071853", "tt0040522", "tt0050976", "tt0044741", "tt0052311", "tt0031679", "tt0056592", "tt0086190", "tt0083658", "tt0087843", "tt0090605", "tt0093058", "tt0070735", "tt0075314", "tt0089881", "tt0086879", "tt0017136", "tt0022100", "tt0050986", "tt0036775", "tt0045152", "tt0053604", "tt0012349", "tt0112573", "tt0180093", "tt0338013", "tt2380307", "tt1345836", "tt0066921", "tt0062622", "tt0071315", "tt0071853", "tt0040522", "tt0050976", "tt0044741", "tt0052311", "tt0031679", "tt0056592", "tt0086190", "tt0083658", "tt0087843", "tt0090605", "tt0093058", "tt0070735", "tt0075314", "tt0089881", "tt0086879", "tt0017136", "tt0022100", "tt0050986", "tt0036775", "tt0045152", "tt0053604", "tt0012349", "tt0112573", "tt0180093", "tt0338013", "tt2380307", "tt1345836", "tt0066921", "tt0062622", "tt0071315", "tt0071853", "tt0040522", "tt0050976", "tt0044741", "tt0052311", "tt0031679", "tt0056592", "tt0086190", "tt0083658", "tt0087843", "tt0090605", "tt0093058", "tt0070735", "tt0075314", "tt0089881", "tt0086879", "tt0017136", "tt0022100", "tt0050986", "tt0036775", "tt0045152", "tt0053604", "tt0012349"]

# 데이터 수집 결과를 저장할 리스트
movies_data = []

# 영화 정보 수집
for movie_id in movie_ids:
    params = {
        "i": movie_id,
        "apikey": api_key
    }
    try:
        response = requests.get(base_url, params=params)
        if response.status_code == 200:
            movie_data = response.json()
            movies_data.append({
                "Title": movie_data.get("Title"),
                "Year": movie_data.get("Year"),
                "Genre": movie_data.get("Genre"),
                "Director": movie_data.get("Director"),
                "Actors": movie_data.get("Actors"),
                "IMDb Rating": movie_data.get("imdbRating"),
                "BoxOffice": movie_data.get("BoxOffice", "N/A")  # 일부 영화는 박스 오피스 정보가 없을 수 있음
            })
        # 간단한 rate limit 대응
        time.sleep(0.1)  # 0.5초 대기
    except Exception as e:
        print(f"An error occurred: {e}")

# 결과 확인
print(movies_data)
[{'Title': 'Reservoir Dogs', 'Year': '1992', 'Genre': 'Crime, Thriller', 'Director': 'Quentin Tarantino', 'Actors': 'Harvey Keitel, Tim Roth, Michael Madsen', 'IMDb Rating': '8.3', 'BoxOffice': '$2,832,029'}, {'Title': 'The Hunt', 'Year': '2012', 'Genre': 'Drama', 'Director': 'Thomas Vinterberg', 'Actors': 'Mads Mikkelsen, Thomas Bo Larsen, Annika Wedderkopp', 'IMDb Rating': '8.3', 'BoxOffice': '$613,308'}, {'Title': 'All About Eve', 'Year': '1950', 'Genre': 'Drama', 'Director': 'Joseph L. Mankiewicz', 'Actors': 'Bette Davis, Anne Baxter, George Sanders', 'IMDb Rating': '8.2', 'BoxOffice': '$63,463'}, {'Title': 'Monty Python and the Holy Grail', 'Year': '1975', 'Genre': 'Adventure, Comedy, Fantasy', 'Director': 'Terry Gilliam, Terry Jones', 'Actors': 'Graham Chapman, John Cleese, Eric Idle', 'IMDb Rating': '8.2', 'BoxOffice': '$2,562,392'}, {'Title': 'Chinatown', 'Year': '1974', 'Genre': 'Drama, Mystery, Thriller', 'Director': 'Roman Polanski', 'Actors': 'Jack Nicholson, Faye Dunaway, John Huston', 'IMDb Rating': '8.1', 'BoxOffice': '$29,200,000'}, {'Title': 'Wild Strawberries', 'Year': '1957', 'Genre': 'Drama, Romance', 'Director': 'Ingmar Bergman', 'Actors': 'Victor Sjöström, Bibi Andersson, Ingrid Thulin', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'The Kid', 'Year': '1921', 'Genre': 'Comedy, Drama, Family', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Edna Purviance, Jackie Coogan', 'IMDb Rating': '8.2', 'BoxOffice': 'N/A'}, {'Title': 'Touch of Evil', 'Year': '1958', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Orson Welles', 'Actors': 'Charlton Heston, Orson Welles, Janet Leigh', 'IMDb Rating': '8.0', 'BoxOffice': '$2,247,465'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'A Clockwork Orange', 'Year': '1971', 'Genre': 'Crime, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Malcolm McDowell, Patrick Magee, Michael Bates', 'IMDb Rating': '8.3', 'BoxOffice': '$26,617,553'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': '2001: A Space Odyssey', 'Year': '1968', 'Genre': 'Adventure, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Keir Dullea, Gary Lockwood, William Sylvester', 'IMDb Rating': '8.3', 'BoxOffice': '$60,481,243'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'Citizen Kane', 'Year': '1941', 'Genre': 'Drama, Mystery', 'Director': 'Orson Welles', 'Actors': 'Orson Welles, Joseph Cotten, Dorothy Comingore', 'IMDb Rating': '8.3', 'BoxOffice': '$1,627,530'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'Bicycle Thieves', 'Year': '1948', 'Genre': 'Drama', 'Director': 'Vittorio De Sica', 'Actors': 'Lamberto Maggiorani, Enzo Staiola, Lianella Carell', 'IMDb Rating': '8.3', 'BoxOffice': '$371,111'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': 'For a Few Dollars More', 'Year': '1965', 'Genre': 'Drama, Western', 'Director': 'Sergio Leone', 'Actors': 'Clint Eastwood, Lee Van Cleef, Gian Maria Volontè', 'IMDb Rating': '8.2', 'BoxOffice': '$15,000,000'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': 'Eternal Sunshine of the Spotless Mind', 'Year': '2004', 'Genre': 'Drama, Romance, Sci-Fi', 'Director': 'Michel Gondry', 'Actors': 'Jim Carrey, Kate Winslet, Tom Wilkinson', 'IMDb Rating': '8.3', 'BoxOffice': '$34,400,301'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Metropolis', 'Year': '1927', 'Genre': 'Drama, Sci-Fi', 'Director': 'Fritz Lang', 'Actors': 'Brigitte Helm, Alfred Abel, Gustav Fröhlich', 'IMDb Rating': '8.3', 'BoxOffice': '$1,236,166'}, {'Title': 'Ran', 'Year': '1985', 'Genre': 'Action, Drama, War', 'Director': 'Akira Kurosawa', 'Actors': 'Tatsuya Nakadai, Akira Terao, Jinpachi Nezu', 'IMDb Rating': '8.2', 'BoxOffice': '$4,135,750'}, {'Title': 'The Seventh Seal', 'Year': '1957', 'Genre': 'Drama, Fantasy', 'Director': 'Ingmar Bergman', 'Actors': 'Max von Sydow, Gunnar Björnstrand, Bengt Ekerot', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Coco', 'Year': '2017', 'Genre': 'Animation, Adventure, Drama', 'Director': 'Lee Unkrich, Adrian Molina', 'Actors': 'Anthony Gonzalez, Gael García Bernal, Benjamin Bratt', 'IMDb Rating': '8.4', 'BoxOffice': '$210,460,015'}, {'Title': 'The Dark Knight Rises', 'Year': '2012', 'Genre': 'Action, Drama, Thriller', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Tom Hardy, Anne Hathaway', 'IMDb Rating': '8.4', 'BoxOffice': '$448,149,584'}, {'Title': 'Braveheart', 'Year': '1995', 'Genre': 'Biography, Drama, War', 'Director': 'Mel Gibson', 'Actors': 'Mel Gibson, Sophie Marceau, Patrick McGoohan', 'IMDb Rating': '8.3', 'BoxOffice': '$75,609,945'}, {'Title': 'Requiem for a Dream', 'Year': '2000', 'Genre': 'Drama', 'Director': 'Darren Aronofsky', 'Actors': 'Ellen Burstyn, Jared Leto, Jennifer Connelly', 'IMDb Rating': '8.3', 'BoxOffice': '$3,635,482'}, {'Title': 'Ikiru', 'Year': '1952', 'Genre': 'Drama', 'Director': 'Akira Kurosawa', 'Actors': "Takashi Shimura, Nobuo Kaneko, Shin'ichi Himori", 'IMDb Rating': '8.3', 'BoxOffice': '$60,239'}, {'Title': 'Aliens', 'Year': '1986', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'James Cameron', 'Actors': 'Sigourney Weaver, Michael Biehn, Carrie Henn', 'IMDb Rating': '8.4', 'BoxOffice': '$85,160,248'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'All About Eve', 'Year': '1950', 'Genre': 'Drama', 'Director': 'Joseph L. Mankiewicz', 'Actors': 'Bette Davis, Anne Baxter, George Sanders', 'IMDb Rating': '8.2', 'BoxOffice': '$63,463'}, {'Title': 'The Kid', 'Year': '1921', 'Genre': 'Comedy, Drama, Family', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Edna Purviance, Jackie Coogan', 'IMDb Rating': '8.2', 'BoxOffice': 'N/A'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': 'Monty Python and the Holy Grail', 'Year': '1975', 'Genre': 'Adventure, Comedy, Fantasy', 'Director': 'Terry Gilliam, Terry Jones', 'Actors': 'Graham Chapman, John Cleese, Eric Idle', 'IMDb Rating': '8.2', 'BoxOffice': '$2,562,392'}, {'Title': 'Wild Strawberries', 'Year': '1957', 'Genre': 'Drama, Romance', 'Director': 'Ingmar Bergman', 'Actors': 'Victor Sjöström, Bibi Andersson, Ingrid Thulin', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'Citizen Kane', 'Year': '1941', 'Genre': 'Drama, Mystery', 'Director': 'Orson Welles', 'Actors': 'Orson Welles, Joseph Cotten, Dorothy Comingore', 'IMDb Rating': '8.3', 'BoxOffice': '$1,627,530'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'Aliens', 'Year': '1986', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'James Cameron', 'Actors': 'Sigourney Weaver, Michael Biehn, Carrie Henn', 'IMDb Rating': '8.4', 'BoxOffice': '$85,160,248'}, {'Title': 'Reservoir Dogs', 'Year': '1992', 'Genre': 'Crime, Thriller', 'Director': 'Quentin Tarantino', 'Actors': 'Harvey Keitel, Tim Roth, Michael Madsen', 'IMDb Rating': '8.3', 'BoxOffice': '$2,832,029'}, {'Title': 'Braveheart', 'Year': '1995', 'Genre': 'Biography, Drama, War', 'Director': 'Mel Gibson', 'Actors': 'Mel Gibson, Sophie Marceau, Patrick McGoohan', 'IMDb Rating': '8.3', 'BoxOffice': '$75,609,945'}, {'Title': 'Requiem for a Dream', 'Year': '2000', 'Genre': 'Drama', 'Director': 'Darren Aronofsky', 'Actors': 'Ellen Burstyn, Jared Leto, Jennifer Connelly', 'IMDb Rating': '8.3', 'BoxOffice': '$3,635,482'}, {'Title': 'Eternal Sunshine of the Spotless Mind', 'Year': '2004', 'Genre': 'Drama, Romance, Sci-Fi', 'Director': 'Michel Gondry', 'Actors': 'Jim Carrey, Kate Winslet, Tom Wilkinson', 'IMDb Rating': '8.3', 'BoxOffice': '$34,400,301'}, {'Title': 'The Dark Knight Rises', 'Year': '2012', 'Genre': 'Action, Drama, Thriller', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Tom Hardy, Anne Hathaway', 'IMDb Rating': '8.4', 'BoxOffice': '$448,149,584'}, {'Title': 'Coco', 'Year': '2017', 'Genre': 'Animation, Adventure, Drama', 'Director': 'Lee Unkrich, Adrian Molina', 'Actors': 'Anthony Gonzalez, Gael García Bernal, Benjamin Bratt', 'IMDb Rating': '8.4', 'BoxOffice': '$210,460,015'}, {'Title': 'The Hunt', 'Year': '2012', 'Genre': 'Drama', 'Director': 'Thomas Vinterberg', 'Actors': 'Mads Mikkelsen, Thomas Bo Larsen, Annika Wedderkopp', 'IMDb Rating': '8.3', 'BoxOffice': '$613,308'}, {'Title': 'A Clockwork Orange', 'Year': '1971', 'Genre': 'Crime, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Malcolm McDowell, Patrick Magee, Michael Bates', 'IMDb Rating': '8.3', 'BoxOffice': '$26,617,553'}, {'Title': '2001: A Space Odyssey', 'Year': '1968', 'Genre': 'Adventure, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Keir Dullea, Gary Lockwood, William Sylvester', 'IMDb Rating': '8.3', 'BoxOffice': '$60,481,243'}, {'Title': 'Ikiru', 'Year': '1952', 'Genre': 'Drama', 'Director': 'Akira Kurosawa', 'Actors': "Takashi Shimura, Nobuo Kaneko, Shin'ichi Himori", 'IMDb Rating': '8.3', 'BoxOffice': '$60,239'}, {'Title': 'The Seventh Seal', 'Year': '1957', 'Genre': 'Drama, Fantasy', 'Director': 'Ingmar Bergman', 'Actors': 'Max von Sydow, Gunnar Björnstrand, Bengt Ekerot', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': 'For a Few Dollars More', 'Year': '1965', 'Genre': 'Drama, Western', 'Director': 'Sergio Leone', 'Actors': 'Clint Eastwood, Lee Van Cleef, Gian Maria Volontè', 'IMDb Rating': '8.2', 'BoxOffice': '$15,000,000'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'All About Eve', 'Year': '1950', 'Genre': 'Drama', 'Director': 'Joseph L. Mankiewicz', 'Actors': 'Bette Davis, Anne Baxter, George Sanders', 'IMDb Rating': '8.2', 'BoxOffice': '$63,463'}, {'Title': 'Metropolis', 'Year': '1927', 'Genre': 'Drama, Sci-Fi', 'Director': 'Fritz Lang', 'Actors': 'Brigitte Helm, Alfred Abel, Gustav Fröhlich', 'IMDb Rating': '8.3', 'BoxOffice': '$1,236,166'}, {'Title': 'Ran', 'Year': '1985', 'Genre': 'Action, Drama, War', 'Director': 'Akira Kurosawa', 'Actors': 'Tatsuya Nakadai, Akira Terao, Jinpachi Nezu', 'IMDb Rating': '8.2', 'BoxOffice': '$4,135,750'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'Touch of Evil', 'Year': '1958', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Orson Welles', 'Actors': 'Charlton Heston, Orson Welles, Janet Leigh', 'IMDb Rating': '8.0', 'BoxOffice': '$2,247,465'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': 'All About Eve', 'Year': '1950', 'Genre': 'Drama', 'Director': 'Joseph L. Mankiewicz', 'Actors': 'Bette Davis, Anne Baxter, George Sanders', 'IMDb Rating': '8.2', 'BoxOffice': '$63,463'}, {'Title': 'Citizen Kane', 'Year': '1941', 'Genre': 'Drama, Mystery', 'Director': 'Orson Welles', 'Actors': 'Orson Welles, Joseph Cotten, Dorothy Comingore', 'IMDb Rating': '8.3', 'BoxOffice': '$1,627,530'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'Aliens', 'Year': '1986', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'James Cameron', 'Actors': 'Sigourney Weaver, Michael Biehn, Carrie Henn', 'IMDb Rating': '8.4', 'BoxOffice': '$85,160,248'}, {'Title': 'Reservoir Dogs', 'Year': '1992', 'Genre': 'Crime, Thriller', 'Director': 'Quentin Tarantino', 'Actors': 'Harvey Keitel, Tim Roth, Michael Madsen', 'IMDb Rating': '8.3', 'BoxOffice': '$2,832,029'}, {'Title': 'Braveheart', 'Year': '1995', 'Genre': 'Biography, Drama, War', 'Director': 'Mel Gibson', 'Actors': 'Mel Gibson, Sophie Marceau, Patrick McGoohan', 'IMDb Rating': '8.3', 'BoxOffice': '$75,609,945'}, {'Title': 'Requiem for a Dream', 'Year': '2000', 'Genre': 'Drama', 'Director': 'Darren Aronofsky', 'Actors': 'Ellen Burstyn, Jared Leto, Jennifer Connelly', 'IMDb Rating': '8.3', 'BoxOffice': '$3,635,482'}, {'Title': 'Eternal Sunshine of the Spotless Mind', 'Year': '2004', 'Genre': 'Drama, Romance, Sci-Fi', 'Director': 'Michel Gondry', 'Actors': 'Jim Carrey, Kate Winslet, Tom Wilkinson', 'IMDb Rating': '8.3', 'BoxOffice': '$34,400,301'}, {'Title': 'The Dark Knight Rises', 'Year': '2012', 'Genre': 'Action, Drama, Thriller', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Tom Hardy, Anne Hathaway', 'IMDb Rating': '8.4', 'BoxOffice': '$448,149,584'}, {'Title': 'Coco', 'Year': '2017', 'Genre': 'Animation, Adventure, Drama', 'Director': 'Lee Unkrich, Adrian Molina', 'Actors': 'Anthony Gonzalez, Gael García Bernal, Benjamin Bratt', 'IMDb Rating': '8.4', 'BoxOffice': '$210,460,015'}, {'Title': 'The Hunt', 'Year': '2012', 'Genre': 'Drama', 'Director': 'Thomas Vinterberg', 'Actors': 'Mads Mikkelsen, Thomas Bo Larsen, Annika Wedderkopp', 'IMDb Rating': '8.3', 'BoxOffice': '$613,308'}, {'Title': 'A Clockwork Orange', 'Year': '1971', 'Genre': 'Crime, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Malcolm McDowell, Patrick Magee, Michael Bates', 'IMDb Rating': '8.3', 'BoxOffice': '$26,617,553'}, {'Title': '2001: A Space Odyssey', 'Year': '1968', 'Genre': 'Adventure, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Keir Dullea, Gary Lockwood, William Sylvester', 'IMDb Rating': '8.3', 'BoxOffice': '$60,481,243'}, {'Title': 'Chinatown', 'Year': '1974', 'Genre': 'Drama, Mystery, Thriller', 'Director': 'Roman Polanski', 'Actors': 'Jack Nicholson, Faye Dunaway, John Huston', 'IMDb Rating': '8.1', 'BoxOffice': '$29,200,000'}, {'Title': 'Monty Python and the Holy Grail', 'Year': '1975', 'Genre': 'Adventure, Comedy, Fantasy', 'Director': 'Terry Gilliam, Terry Jones', 'Actors': 'Graham Chapman, John Cleese, Eric Idle', 'IMDb Rating': '8.2', 'BoxOffice': '$2,562,392'}, {'Title': 'For a Few Dollars More', 'Year': '1965', 'Genre': 'Drama, Western', 'Director': 'Sergio Leone', 'Actors': 'Clint Eastwood, Lee Van Cleef, Gian Maria Volontè', 'IMDb Rating': '8.2', 'BoxOffice': '$15,000,000'}, {'Title': 'The Seventh Seal', 'Year': '1957', 'Genre': 'Drama, Fantasy', 'Director': 'Ingmar Bergman', 'Actors': 'Max von Sydow, Gunnar Björnstrand, Bengt Ekerot', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Ikiru', 'Year': '1952', 'Genre': 'Drama', 'Director': 'Akira Kurosawa', 'Actors': "Takashi Shimura, Nobuo Kaneko, Shin'ichi Himori", 'IMDb Rating': '8.3', 'BoxOffice': '$60,239'}, {'Title': 'Touch of Evil', 'Year': '1958', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Orson Welles', 'Actors': 'Charlton Heston, Orson Welles, Janet Leigh', 'IMDb Rating': '8.0', 'BoxOffice': '$2,247,465'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': 'Bicycle Thieves', 'Year': '1948', 'Genre': 'Drama', 'Director': 'Vittorio De Sica', 'Actors': 'Lamberto Maggiorani, Enzo Staiola, Lianella Carell', 'IMDb Rating': '8.3', 'BoxOffice': '$371,111'}, {'Title': 'Citizen Kane', 'Year': '1941', 'Genre': 'Drama, Mystery', 'Director': 'Orson Welles', 'Actors': 'Orson Welles, Joseph Cotten, Dorothy Comingore', 'IMDb Rating': '8.3', 'BoxOffice': '$1,627,530'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Ran', 'Year': '1985', 'Genre': 'Action, Drama, War', 'Director': 'Akira Kurosawa', 'Actors': 'Tatsuya Nakadai, Akira Terao, Jinpachi Nezu', 'IMDb Rating': '8.2', 'BoxOffice': '$4,135,750'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Metropolis', 'Year': '1927', 'Genre': 'Drama, Sci-Fi', 'Director': 'Fritz Lang', 'Actors': 'Brigitte Helm, Alfred Abel, Gustav Fröhlich', 'IMDb Rating': '8.3', 'BoxOffice': '$1,236,166'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'Wild Strawberries', 'Year': '1957', 'Genre': 'Drama, Romance', 'Director': 'Ingmar Bergman', 'Actors': 'Victor Sjöström, Bibi Andersson, Ingrid Thulin', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Kid', 'Year': '1921', 'Genre': 'Comedy, Drama, Family', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Edna Purviance, Jackie Coogan', 'IMDb Rating': '8.2', 'BoxOffice': 'N/A'}, {'Title': 'Braveheart', 'Year': '1995', 'Genre': 'Biography, Drama, War', 'Director': 'Mel Gibson', 'Actors': 'Mel Gibson, Sophie Marceau, Patrick McGoohan', 'IMDb Rating': '8.3', 'BoxOffice': '$75,609,945'}, {'Title': 'Requiem for a Dream', 'Year': '2000', 'Genre': 'Drama', 'Director': 'Darren Aronofsky', 'Actors': 'Ellen Burstyn, Jared Leto, Jennifer Connelly', 'IMDb Rating': '8.3', 'BoxOffice': '$3,635,482'}, {'Title': 'Eternal Sunshine of the Spotless Mind', 'Year': '2004', 'Genre': 'Drama, Romance, Sci-Fi', 'Director': 'Michel Gondry', 'Actors': 'Jim Carrey, Kate Winslet, Tom Wilkinson', 'IMDb Rating': '8.3', 'BoxOffice': '$34,400,301'}, {'Title': 'Coco', 'Year': '2017', 'Genre': 'Animation, Adventure, Drama', 'Director': 'Lee Unkrich, Adrian Molina', 'Actors': 'Anthony Gonzalez, Gael García Bernal, Benjamin Bratt', 'IMDb Rating': '8.4', 'BoxOffice': '$210,460,015'}, {'Title': 'The Dark Knight Rises', 'Year': '2012', 'Genre': 'Action, Drama, Thriller', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Tom Hardy, Anne Hathaway', 'IMDb Rating': '8.4', 'BoxOffice': '$448,149,584'}, {'Title': 'A Clockwork Orange', 'Year': '1971', 'Genre': 'Crime, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Malcolm McDowell, Patrick Magee, Michael Bates', 'IMDb Rating': '8.3', 'BoxOffice': '$26,617,553'}, {'Title': '2001: A Space Odyssey', 'Year': '1968', 'Genre': 'Adventure, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Keir Dullea, Gary Lockwood, William Sylvester', 'IMDb Rating': '8.3', 'BoxOffice': '$60,481,243'}, {'Title': 'Chinatown', 'Year': '1974', 'Genre': 'Drama, Mystery, Thriller', 'Director': 'Roman Polanski', 'Actors': 'Jack Nicholson, Faye Dunaway, John Huston', 'IMDb Rating': '8.1', 'BoxOffice': '$29,200,000'}, {'Title': 'Monty Python and the Holy Grail', 'Year': '1975', 'Genre': 'Adventure, Comedy, Fantasy', 'Director': 'Terry Gilliam, Terry Jones', 'Actors': 'Graham Chapman, John Cleese, Eric Idle', 'IMDb Rating': '8.2', 'BoxOffice': '$2,562,392'}, {'Title': 'Bicycle Thieves', 'Year': '1948', 'Genre': 'Drama', 'Director': 'Vittorio De Sica', 'Actors': 'Lamberto Maggiorani, Enzo Staiola, Lianella Carell', 'IMDb Rating': '8.3', 'BoxOffice': '$371,111'}, {'Title': 'The Seventh Seal', 'Year': '1957', 'Genre': 'Drama, Fantasy', 'Director': 'Ingmar Bergman', 'Actors': 'Max von Sydow, Gunnar Björnstrand, Bengt Ekerot', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Ikiru', 'Year': '1952', 'Genre': 'Drama', 'Director': 'Akira Kurosawa', 'Actors': "Takashi Shimura, Nobuo Kaneko, Shin'ichi Himori", 'IMDb Rating': '8.3', 'BoxOffice': '$60,239'}, {'Title': 'Touch of Evil', 'Year': '1958', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Orson Welles', 'Actors': 'Charlton Heston, Orson Welles, Janet Leigh', 'IMDb Rating': '8.0', 'BoxOffice': '$2,247,465'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': 'Aliens', 'Year': '1986', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'James Cameron', 'Actors': 'Sigourney Weaver, Michael Biehn, Carrie Henn', 'IMDb Rating': '8.4', 'BoxOffice': '$85,160,248'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Ran', 'Year': '1985', 'Genre': 'Action, Drama, War', 'Director': 'Akira Kurosawa', 'Actors': 'Tatsuya Nakadai, Akira Terao, Jinpachi Nezu', 'IMDb Rating': '8.2', 'BoxOffice': '$4,135,750'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Metropolis', 'Year': '1927', 'Genre': 'Drama, Sci-Fi', 'Director': 'Fritz Lang', 'Actors': 'Brigitte Helm, Alfred Abel, Gustav Fröhlich', 'IMDb Rating': '8.3', 'BoxOffice': '$1,236,166'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'Wild Strawberries', 'Year': '1957', 'Genre': 'Drama, Romance', 'Director': 'Ingmar Bergman', 'Actors': 'Victor Sjöström, Bibi Andersson, Ingrid Thulin', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Kid', 'Year': '1921', 'Genre': 'Comedy, Drama, Family', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Edna Purviance, Jackie Coogan', 'IMDb Rating': '8.2', 'BoxOffice': 'N/A'}, {'Title': 'Braveheart', 'Year': '1995', 'Genre': 'Biography, Drama, War', 'Director': 'Mel Gibson', 'Actors': 'Mel Gibson, Sophie Marceau, Patrick McGoohan', 'IMDb Rating': '8.3', 'BoxOffice': '$75,609,945'}, {'Title': 'Requiem for a Dream', 'Year': '2000', 'Genre': 'Drama', 'Director': 'Darren Aronofsky', 'Actors': 'Ellen Burstyn, Jared Leto, Jennifer Connelly', 'IMDb Rating': '8.3', 'BoxOffice': '$3,635,482'}, {'Title': 'Eternal Sunshine of the Spotless Mind', 'Year': '2004', 'Genre': 'Drama, Romance, Sci-Fi', 'Director': 'Michel Gondry', 'Actors': 'Jim Carrey, Kate Winslet, Tom Wilkinson', 'IMDb Rating': '8.3', 'BoxOffice': '$34,400,301'}, {'Title': 'Coco', 'Year': '2017', 'Genre': 'Animation, Adventure, Drama', 'Director': 'Lee Unkrich, Adrian Molina', 'Actors': 'Anthony Gonzalez, Gael García Bernal, Benjamin Bratt', 'IMDb Rating': '8.4', 'BoxOffice': '$210,460,015'}, {'Title': 'The Dark Knight Rises', 'Year': '2012', 'Genre': 'Action, Drama, Thriller', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Tom Hardy, Anne Hathaway', 'IMDb Rating': '8.4', 'BoxOffice': '$448,149,584'}, {'Title': 'A Clockwork Orange', 'Year': '1971', 'Genre': 'Crime, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Malcolm McDowell, Patrick Magee, Michael Bates', 'IMDb Rating': '8.3', 'BoxOffice': '$26,617,553'}, {'Title': '2001: A Space Odyssey', 'Year': '1968', 'Genre': 'Adventure, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Keir Dullea, Gary Lockwood, William Sylvester', 'IMDb Rating': '8.3', 'BoxOffice': '$60,481,243'}, {'Title': 'Chinatown', 'Year': '1974', 'Genre': 'Drama, Mystery, Thriller', 'Director': 'Roman Polanski', 'Actors': 'Jack Nicholson, Faye Dunaway, John Huston', 'IMDb Rating': '8.1', 'BoxOffice': '$29,200,000'}, {'Title': 'Monty Python and the Holy Grail', 'Year': '1975', 'Genre': 'Adventure, Comedy, Fantasy', 'Director': 'Terry Gilliam, Terry Jones', 'Actors': 'Graham Chapman, John Cleese, Eric Idle', 'IMDb Rating': '8.2', 'BoxOffice': '$2,562,392'}, {'Title': 'Bicycle Thieves', 'Year': '1948', 'Genre': 'Drama', 'Director': 'Vittorio De Sica', 'Actors': 'Lamberto Maggiorani, Enzo Staiola, Lianella Carell', 'IMDb Rating': '8.3', 'BoxOffice': '$371,111'}, {'Title': 'The Seventh Seal', 'Year': '1957', 'Genre': 'Drama, Fantasy', 'Director': 'Ingmar Bergman', 'Actors': 'Max von Sydow, Gunnar Björnstrand, Bengt Ekerot', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Ikiru', 'Year': '1952', 'Genre': 'Drama', 'Director': 'Akira Kurosawa', 'Actors': "Takashi Shimura, Nobuo Kaneko, Shin'ichi Himori", 'IMDb Rating': '8.3', 'BoxOffice': '$60,239'}, {'Title': 'Touch of Evil', 'Year': '1958', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Orson Welles', 'Actors': 'Charlton Heston, Orson Welles, Janet Leigh', 'IMDb Rating': '8.0', 'BoxOffice': '$2,247,465'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': 'Aliens', 'Year': '1986', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'James Cameron', 'Actors': 'Sigourney Weaver, Michael Biehn, Carrie Henn', 'IMDb Rating': '8.4', 'BoxOffice': '$85,160,248'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Ran', 'Year': '1985', 'Genre': 'Action, Drama, War', 'Director': 'Akira Kurosawa', 'Actors': 'Tatsuya Nakadai, Akira Terao, Jinpachi Nezu', 'IMDb Rating': '8.2', 'BoxOffice': '$4,135,750'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Metropolis', 'Year': '1927', 'Genre': 'Drama, Sci-Fi', 'Director': 'Fritz Lang', 'Actors': 'Brigitte Helm, Alfred Abel, Gustav Fröhlich', 'IMDb Rating': '8.3', 'BoxOffice': '$1,236,166'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'Wild Strawberries', 'Year': '1957', 'Genre': 'Drama, Romance', 'Director': 'Ingmar Bergman', 'Actors': 'Victor Sjöström, Bibi Andersson, Ingrid Thulin', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Kid', 'Year': '1921', 'Genre': 'Comedy, Drama, Family', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Edna Purviance, Jackie Coogan', 'IMDb Rating': '8.2', 'BoxOffice': 'N/A'}, {'Title': 'Braveheart', 'Year': '1995', 'Genre': 'Biography, Drama, War', 'Director': 'Mel Gibson', 'Actors': 'Mel Gibson, Sophie Marceau, Patrick McGoohan', 'IMDb Rating': '8.3', 'BoxOffice': '$75,609,945'}, {'Title': 'Requiem for a Dream', 'Year': '2000', 'Genre': 'Drama', 'Director': 'Darren Aronofsky', 'Actors': 'Ellen Burstyn, Jared Leto, Jennifer Connelly', 'IMDb Rating': '8.3', 'BoxOffice': '$3,635,482'}, {'Title': 'Eternal Sunshine of the Spotless Mind', 'Year': '2004', 'Genre': 'Drama, Romance, Sci-Fi', 'Director': 'Michel Gondry', 'Actors': 'Jim Carrey, Kate Winslet, Tom Wilkinson', 'IMDb Rating': '8.3', 'BoxOffice': '$34,400,301'}, {'Title': 'Coco', 'Year': '2017', 'Genre': 'Animation, Adventure, Drama', 'Director': 'Lee Unkrich, Adrian Molina', 'Actors': 'Anthony Gonzalez, Gael García Bernal, Benjamin Bratt', 'IMDb Rating': '8.4', 'BoxOffice': '$210,460,015'}, {'Title': 'The Dark Knight Rises', 'Year': '2012', 'Genre': 'Action, Drama, Thriller', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Tom Hardy, Anne Hathaway', 'IMDb Rating': '8.4', 'BoxOffice': '$448,149,584'}, {'Title': 'A Clockwork Orange', 'Year': '1971', 'Genre': 'Crime, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Malcolm McDowell, Patrick Magee, Michael Bates', 'IMDb Rating': '8.3', 'BoxOffice': '$26,617,553'}, {'Title': '2001: A Space Odyssey', 'Year': '1968', 'Genre': 'Adventure, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Keir Dullea, Gary Lockwood, William Sylvester', 'IMDb Rating': '8.3', 'BoxOffice': '$60,481,243'}, {'Title': 'Chinatown', 'Year': '1974', 'Genre': 'Drama, Mystery, Thriller', 'Director': 'Roman Polanski', 'Actors': 'Jack Nicholson, Faye Dunaway, John Huston', 'IMDb Rating': '8.1', 'BoxOffice': '$29,200,000'}, {'Title': 'Monty Python and the Holy Grail', 'Year': '1975', 'Genre': 'Adventure, Comedy, Fantasy', 'Director': 'Terry Gilliam, Terry Jones', 'Actors': 'Graham Chapman, John Cleese, Eric Idle', 'IMDb Rating': '8.2', 'BoxOffice': '$2,562,392'}, {'Title': 'Bicycle Thieves', 'Year': '1948', 'Genre': 'Drama', 'Director': 'Vittorio De Sica', 'Actors': 'Lamberto Maggiorani, Enzo Staiola, Lianella Carell', 'IMDb Rating': '8.3', 'BoxOffice': '$371,111'}, {'Title': 'The Seventh Seal', 'Year': '1957', 'Genre': 'Drama, Fantasy', 'Director': 'Ingmar Bergman', 'Actors': 'Max von Sydow, Gunnar Björnstrand, Bengt Ekerot', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Ikiru', 'Year': '1952', 'Genre': 'Drama', 'Director': 'Akira Kurosawa', 'Actors': "Takashi Shimura, Nobuo Kaneko, Shin'ichi Himori", 'IMDb Rating': '8.3', 'BoxOffice': '$60,239'}, {'Title': 'Touch of Evil', 'Year': '1958', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Orson Welles', 'Actors': 'Charlton Heston, Orson Welles, Janet Leigh', 'IMDb Rating': '8.0', 'BoxOffice': '$2,247,465'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': 'Aliens', 'Year': '1986', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'James Cameron', 'Actors': 'Sigourney Weaver, Michael Biehn, Carrie Henn', 'IMDb Rating': '8.4', 'BoxOffice': '$85,160,248'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Ran', 'Year': '1985', 'Genre': 'Action, Drama, War', 'Director': 'Akira Kurosawa', 'Actors': 'Tatsuya Nakadai, Akira Terao, Jinpachi Nezu', 'IMDb Rating': '8.2', 'BoxOffice': '$4,135,750'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Metropolis', 'Year': '1927', 'Genre': 'Drama, Sci-Fi', 'Director': 'Fritz Lang', 'Actors': 'Brigitte Helm, Alfred Abel, Gustav Fröhlich', 'IMDb Rating': '8.3', 'BoxOffice': '$1,236,166'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'Wild Strawberries', 'Year': '1957', 'Genre': 'Drama, Romance', 'Director': 'Ingmar Bergman', 'Actors': 'Victor Sjöström, Bibi Andersson, Ingrid Thulin', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Kid', 'Year': '1921', 'Genre': 'Comedy, Drama, Family', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Edna Purviance, Jackie Coogan', 'IMDb Rating': '8.2', 'BoxOffice': 'N/A'}]
import random
import string

def generate_random_id():
    return "tt" + ''.join(random.choices(string.digits, k=7))

random_ids = [generate_random_id() for _ in range(200)]

print(random_ids)
['tt9172861', 'tt8939702', 'tt7431708', 'tt7196384', 'tt3261684', 'tt7322141', 'tt2587286', 'tt3634379', 'tt1806774', 'tt7596305', 'tt5326782', 'tt5787794', 'tt1348116', 'tt2075221', 'tt6751379', 'tt3826237', 'tt6283623', 'tt6605474', 'tt5646508', 'tt9870753', 'tt1636045', 'tt7051963', 'tt9720792', 'tt1769948', 'tt3844097', 'tt7627495', 'tt4816567', 'tt7006515', 'tt0977635', 'tt6428194', 'tt3094882', 'tt9922211', 'tt8468617', 'tt3881200', 'tt7326934', 'tt9608385', 'tt6528770', 'tt5759606', 'tt5060098', 'tt5907829', 'tt1517193', 'tt4497836', 'tt2960143', 'tt4096109', 'tt9473428', 'tt7307288', 'tt7014482', 'tt6632856', 'tt6993754', 'tt1634780', 'tt1344838', 'tt0764795', 'tt8958958', 'tt4777169', 'tt0980119', 'tt1469164', 'tt6615807', 'tt6945401', 'tt3222691', 'tt6769655', 'tt2946380', 'tt1937969', 'tt5311617', 'tt2658862', 'tt7184621', 'tt9891382', 'tt8346524', 'tt1430160', 'tt4217101', 'tt2449675', 'tt0004260', 'tt3950784', 'tt9439910', 'tt6498436', 'tt2222027', 'tt2840196', 'tt7588200', 'tt9234778', 'tt1668658', 'tt7025657', 'tt9103676', 'tt2205899', 'tt8215302', 'tt4786021', 'tt6185423', 'tt0805818', 'tt1466054', 'tt4830429', 'tt5265567', 'tt9635785', 'tt0217818', 'tt4551429', 'tt7514688', 'tt4324923', 'tt1525817', 'tt8241621', 'tt0610750', 'tt1667361', 'tt1885851', 'tt3403151', 'tt7980227', 'tt4528133', 'tt5040910', 'tt3801835', 'tt1138069', 'tt8720589', 'tt3260967', 'tt2369137', 'tt7822457', 'tt7048624', 'tt6889012', 'tt8103926', 'tt7941795', 'tt3591526', 'tt8111769', 'tt1266010', 'tt6874921', 'tt4623373', 'tt7508020', 'tt0002565', 'tt0186698', 'tt9326648', 'tt4212060', 'tt3626749', 'tt0168044', 'tt8157963', 'tt7632101', 'tt3211798', 'tt1696799', 'tt9339358', 'tt5146254', 'tt5476179', 'tt7871338', 'tt3032394', 'tt4705950', 'tt1834702', 'tt8705341', 'tt4972982', 'tt0914237', 'tt5203808', 'tt5281268', 'tt4945802', 'tt7634243', 'tt1310408', 'tt3057772', 'tt4750899', 'tt4949036', 'tt4192435', 'tt1672919', 'tt8368117', 'tt5987609', 'tt1585884', 'tt7350084', 'tt9884486', 'tt7706023', 'tt4928223', 'tt5070305', 'tt4908635', 'tt5471136', 'tt0973050', 'tt7558806', 'tt4289455', 'tt3328044', 'tt5036814', 'tt6701566', 'tt0880807', 'tt1857376', 'tt6480266', 'tt6995313', 'tt0138505', 'tt6706709', 'tt6244464', 'tt9663131', 'tt3637049', 'tt5533275', 'tt7617318', 'tt3719780', 'tt3007471', 'tt4541854', 'tt1454143', 'tt0902212', 'tt5055795', 'tt0794506', 'tt5504253', 'tt9119110', 'tt7668798', 'tt3741076', 'tt8112795', 'tt5139098', 'tt5147236', 'tt2039125', 'tt3110637', 'tt8014421', 'tt0746450', 'tt1627328', 'tt0759261', 'tt9727026', 'tt8698484', 'tt5226261', 'tt7364873']
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns

# 제공받은 데이터
data = [{'Title': 'Reservoir Dogs', 'Year': '1992', 'Genre': 'Crime, Thriller', 'Director': 'Quentin Tarantino', 'Actors': 'Harvey Keitel, Tim Roth, Michael Madsen', 'IMDb Rating': '8.3', 'BoxOffice': '$2,832,029'}, {'Title': 'The Hunt', 'Year': '2012', 'Genre': 'Drama', 'Director': 'Thomas Vinterberg', 'Actors': 'Mads Mikkelsen, Thomas Bo Larsen, Annika Wedderkopp', 'IMDb Rating': '8.3', 'BoxOffice': '$613,308'}, {'Title': 'All About Eve', 'Year': '1950', 'Genre': 'Drama', 'Director': 'Joseph L. Mankiewicz', 'Actors': 'Bette Davis, Anne Baxter, George Sanders', 'IMDb Rating': '8.2', 'BoxOffice': '$63,463'}, {'Title': 'Monty Python and the Holy Grail', 'Year': '1975', 'Genre': 'Adventure, Comedy, Fantasy', 'Director': 'Terry Gilliam, Terry Jones', 'Actors': 'Graham Chapman, John Cleese, Eric Idle', 'IMDb Rating': '8.2', 'BoxOffice': '$2,562,392'}, {'Title': 'Chinatown', 'Year': '1974', 'Genre': 'Drama, Mystery, Thriller', 'Director': 'Roman Polanski', 'Actors': 'Jack Nicholson, Faye Dunaway, John Huston', 'IMDb Rating': '8.1', 'BoxOffice': '$29,200,000'}, {'Title': 'Wild Strawberries', 'Year': '1957', 'Genre': 'Drama, Romance', 'Director': 'Ingmar Bergman', 'Actors': 'Victor Sjöström, Bibi Andersson, Ingrid Thulin', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'The Kid', 'Year': '1921', 'Genre': 'Comedy, Drama, Family', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Edna Purviance, Jackie Coogan', 'IMDb Rating': '8.2', 'BoxOffice': 'N/A'}, {'Title': 'Touch of Evil', 'Year': '1958', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Orson Welles', 'Actors': 'Charlton Heston, Orson Welles, Janet Leigh', 'IMDb Rating': '8.0', 'BoxOffice': '$2,247,465'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'A Clockwork Orange', 'Year': '1971', 'Genre': 'Crime, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Malcolm McDowell, Patrick Magee, Michael Bates', 'IMDb Rating': '8.3', 'BoxOffice': '$26,617,553'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': '2001: A Space Odyssey', 'Year': '1968', 'Genre': 'Adventure, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Keir Dullea, Gary Lockwood, William Sylvester', 'IMDb Rating': '8.3', 'BoxOffice': '$60,481,243'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'Citizen Kane', 'Year': '1941', 'Genre': 'Drama, Mystery', 'Director': 'Orson Welles', 'Actors': 'Orson Welles, Joseph Cotten, Dorothy Comingore', 'IMDb Rating': '8.3', 'BoxOffice': '$1,627,530'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'Bicycle Thieves', 'Year': '1948', 'Genre': 'Drama', 'Director': 'Vittorio De Sica', 'Actors': 'Lamberto Maggiorani, Enzo Staiola, Lianella Carell', 'IMDb Rating': '8.3', 'BoxOffice': '$371,111'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': 'For a Few Dollars More', 'Year': '1965', 'Genre': 'Drama, Western', 'Director': 'Sergio Leone', 'Actors': 'Clint Eastwood, Lee Van Cleef, Gian Maria Volontè', 'IMDb Rating': '8.2', 'BoxOffice': '$15,000,000'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': 'Eternal Sunshine of the Spotless Mind', 'Year': '2004', 'Genre': 'Drama, Romance, Sci-Fi', 'Director': 'Michel Gondry', 'Actors': 'Jim Carrey, Kate Winslet, Tom Wilkinson', 'IMDb Rating': '8.3', 'BoxOffice': '$34,400,301'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Metropolis', 'Year': '1927', 'Genre': 'Drama, Sci-Fi', 'Director': 'Fritz Lang', 'Actors': 'Brigitte Helm, Alfred Abel, Gustav Fröhlich', 'IMDb Rating': '8.3', 'BoxOffice': '$1,236,166'}, {'Title': 'Ran', 'Year': '1985', 'Genre': 'Action, Drama, War', 'Director': 'Akira Kurosawa', 'Actors': 'Tatsuya Nakadai, Akira Terao, Jinpachi Nezu', 'IMDb Rating': '8.2', 'BoxOffice': '$4,135,750'}, {'Title': 'The Seventh Seal', 'Year': '1957', 'Genre': 'Drama, Fantasy', 'Director': 'Ingmar Bergman', 'Actors': 'Max von Sydow, Gunnar Björnstrand, Bengt Ekerot', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Coco', 'Year': '2017', 'Genre': 'Animation, Adventure, Drama', 'Director': 'Lee Unkrich, Adrian Molina', 'Actors': 'Anthony Gonzalez, Gael García Bernal, Benjamin Bratt', 'IMDb Rating': '8.4', 'BoxOffice': '$210,460,015'}, {'Title': 'The Dark Knight Rises', 'Year': '2012', 'Genre': 'Action, Drama, Thriller', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Tom Hardy, Anne Hathaway', 'IMDb Rating': '8.4', 'BoxOffice': '$448,149,584'}, {'Title': 'Braveheart', 'Year': '1995', 'Genre': 'Biography, Drama, War', 'Director': 'Mel Gibson', 'Actors': 'Mel Gibson, Sophie Marceau, Patrick McGoohan', 'IMDb Rating': '8.3', 'BoxOffice': '$75,609,945'}, {'Title': 'Requiem for a Dream', 'Year': '2000', 'Genre': 'Drama', 'Director': 'Darren Aronofsky', 'Actors': 'Ellen Burstyn, Jared Leto, Jennifer Connelly', 'IMDb Rating': '8.3', 'BoxOffice': '$3,635,482'}, {'Title': 'Ikiru', 'Year': '1952', 'Genre': 'Drama', 'Director': 'Akira Kurosawa', 'Actors': "Takashi Shimura, Nobuo Kaneko, Shin'ichi Himori", 'IMDb Rating': '8.3', 'BoxOffice': '$60,239'}, {'Title': 'Aliens', 'Year': '1986', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'James Cameron', 'Actors': 'Sigourney Weaver, Michael Biehn, Carrie Henn', 'IMDb Rating': '8.4', 'BoxOffice': '$85,160,248'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'All About Eve', 'Year': '1950', 'Genre': 'Drama', 'Director': 'Joseph L. Mankiewicz', 'Actors': 'Bette Davis, Anne Baxter, George Sanders', 'IMDb Rating': '8.2', 'BoxOffice': '$63,463'}, {'Title': 'The Kid', 'Year': '1921', 'Genre': 'Comedy, Drama, Family', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Edna Purviance, Jackie Coogan', 'IMDb Rating': '8.2', 'BoxOffice': 'N/A'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': 'Monty Python and the Holy Grail', 'Year': '1975', 'Genre': 'Adventure, Comedy, Fantasy', 'Director': 'Terry Gilliam, Terry Jones', 'Actors': 'Graham Chapman, John Cleese, Eric Idle', 'IMDb Rating': '8.2', 'BoxOffice': '$2,562,392'}, {'Title': 'Wild Strawberries', 'Year': '1957', 'Genre': 'Drama, Romance', 'Director': 'Ingmar Bergman', 'Actors': 'Victor Sjöström, Bibi Andersson, Ingrid Thulin', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'Citizen Kane', 'Year': '1941', 'Genre': 'Drama, Mystery', 'Director': 'Orson Welles', 'Actors': 'Orson Welles, Joseph Cotten, Dorothy Comingore', 'IMDb Rating': '8.3', 'BoxOffice': '$1,627,530'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'Aliens', 'Year': '1986', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'James Cameron', 'Actors': 'Sigourney Weaver, Michael Biehn, Carrie Henn', 'IMDb Rating': '8.4', 'BoxOffice': '$85,160,248'}, {'Title': 'Reservoir Dogs', 'Year': '1992', 'Genre': 'Crime, Thriller', 'Director': 'Quentin Tarantino', 'Actors': 'Harvey Keitel, Tim Roth, Michael Madsen', 'IMDb Rating': '8.3', 'BoxOffice': '$2,832,029'}, {'Title': 'Braveheart', 'Year': '1995', 'Genre': 'Biography, Drama, War', 'Director': 'Mel Gibson', 'Actors': 'Mel Gibson, Sophie Marceau, Patrick McGoohan', 'IMDb Rating': '8.3', 'BoxOffice': '$75,609,945'}, {'Title': 'Requiem for a Dream', 'Year': '2000', 'Genre': 'Drama', 'Director': 'Darren Aronofsky', 'Actors': 'Ellen Burstyn, Jared Leto, Jennifer Connelly', 'IMDb Rating': '8.3', 'BoxOffice': '$3,635,482'}, {'Title': 'Eternal Sunshine of the Spotless Mind', 'Year': '2004', 'Genre': 'Drama, Romance, Sci-Fi', 'Director': 'Michel Gondry', 'Actors': 'Jim Carrey, Kate Winslet, Tom Wilkinson', 'IMDb Rating': '8.3', 'BoxOffice': '$34,400,301'}, {'Title': 'The Dark Knight Rises', 'Year': '2012', 'Genre': 'Action, Drama, Thriller', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Tom Hardy, Anne Hathaway', 'IMDb Rating': '8.4', 'BoxOffice': '$448,149,584'}, {'Title': 'Coco', 'Year': '2017', 'Genre': 'Animation, Adventure, Drama', 'Director': 'Lee Unkrich, Adrian Molina', 'Actors': 'Anthony Gonzalez, Gael García Bernal, Benjamin Bratt', 'IMDb Rating': '8.4', 'BoxOffice': '$210,460,015'}, {'Title': 'The Hunt', 'Year': '2012', 'Genre': 'Drama', 'Director': 'Thomas Vinterberg', 'Actors': 'Mads Mikkelsen, Thomas Bo Larsen, Annika Wedderkopp', 'IMDb Rating': '8.3', 'BoxOffice': '$613,308'}, {'Title': 'A Clockwork Orange', 'Year': '1971', 'Genre': 'Crime, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Malcolm McDowell, Patrick Magee, Michael Bates', 'IMDb Rating': '8.3', 'BoxOffice': '$26,617,553'}, {'Title': '2001: A Space Odyssey', 'Year': '1968', 'Genre': 'Adventure, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Keir Dullea, Gary Lockwood, William Sylvester', 'IMDb Rating': '8.3', 'BoxOffice': '$60,481,243'}, {'Title': 'Ikiru', 'Year': '1952', 'Genre': 'Drama', 'Director': 'Akira Kurosawa', 'Actors': "Takashi Shimura, Nobuo Kaneko, Shin'ichi Himori", 'IMDb Rating': '8.3', 'BoxOffice': '$60,239'}, {'Title': 'The Seventh Seal', 'Year': '1957', 'Genre': 'Drama, Fantasy', 'Director': 'Ingmar Bergman', 'Actors': 'Max von Sydow, Gunnar Björnstrand, Bengt Ekerot', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': 'For a Few Dollars More', 'Year': '1965', 'Genre': 'Drama, Western', 'Director': 'Sergio Leone', 'Actors': 'Clint Eastwood, Lee Van Cleef, Gian Maria Volontè', 'IMDb Rating': '8.2', 'BoxOffice': '$15,000,000'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'All About Eve', 'Year': '1950', 'Genre': 'Drama', 'Director': 'Joseph L. Mankiewicz', 'Actors': 'Bette Davis, Anne Baxter, George Sanders', 'IMDb Rating': '8.2', 'BoxOffice': '$63,463'}, {'Title': 'Metropolis', 'Year': '1927', 'Genre': 'Drama, Sci-Fi', 'Director': 'Fritz Lang', 'Actors': 'Brigitte Helm, Alfred Abel, Gustav Fröhlich', 'IMDb Rating': '8.3', 'BoxOffice': '$1,236,166'}, {'Title': 'Ran', 'Year': '1985', 'Genre': 'Action, Drama, War', 'Director': 'Akira Kurosawa', 'Actors': 'Tatsuya Nakadai, Akira Terao, Jinpachi Nezu', 'IMDb Rating': '8.2', 'BoxOffice': '$4,135,750'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'Touch of Evil', 'Year': '1958', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Orson Welles', 'Actors': 'Charlton Heston, Orson Welles, Janet Leigh', 'IMDb Rating': '8.0', 'BoxOffice': '$2,247,465'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': 'All About Eve', 'Year': '1950', 'Genre': 'Drama', 'Director': 'Joseph L. Mankiewicz', 'Actors': 'Bette Davis, Anne Baxter, George Sanders', 'IMDb Rating': '8.2', 'BoxOffice': '$63,463'}, {'Title': 'Citizen Kane', 'Year': '1941', 'Genre': 'Drama, Mystery', 'Director': 'Orson Welles', 'Actors': 'Orson Welles, Joseph Cotten, Dorothy Comingore', 'IMDb Rating': '8.3', 'BoxOffice': '$1,627,530'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'Aliens', 'Year': '1986', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'James Cameron', 'Actors': 'Sigourney Weaver, Michael Biehn, Carrie Henn', 'IMDb Rating': '8.4', 'BoxOffice': '$85,160,248'}, {'Title': 'Reservoir Dogs', 'Year': '1992', 'Genre': 'Crime, Thriller', 'Director': 'Quentin Tarantino', 'Actors': 'Harvey Keitel, Tim Roth, Michael Madsen', 'IMDb Rating': '8.3', 'BoxOffice': '$2,832,029'}, {'Title': 'Braveheart', 'Year': '1995', 'Genre': 'Biography, Drama, War', 'Director': 'Mel Gibson', 'Actors': 'Mel Gibson, Sophie Marceau, Patrick McGoohan', 'IMDb Rating': '8.3', 'BoxOffice': '$75,609,945'}, {'Title': 'Requiem for a Dream', 'Year': '2000', 'Genre': 'Drama', 'Director': 'Darren Aronofsky', 'Actors': 'Ellen Burstyn, Jared Leto, Jennifer Connelly', 'IMDb Rating': '8.3', 'BoxOffice': '$3,635,482'}, {'Title': 'Eternal Sunshine of the Spotless Mind', 'Year': '2004', 'Genre': 'Drama, Romance, Sci-Fi', 'Director': 'Michel Gondry', 'Actors': 'Jim Carrey, Kate Winslet, Tom Wilkinson', 'IMDb Rating': '8.3', 'BoxOffice': '$34,400,301'}, {'Title': 'The Dark Knight Rises', 'Year': '2012', 'Genre': 'Action, Drama, Thriller', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Tom Hardy, Anne Hathaway', 'IMDb Rating': '8.4', 'BoxOffice': '$448,149,584'}, {'Title': 'Coco', 'Year': '2017', 'Genre': 'Animation, Adventure, Drama', 'Director': 'Lee Unkrich, Adrian Molina', 'Actors': 'Anthony Gonzalez, Gael García Bernal, Benjamin Bratt', 'IMDb Rating': '8.4', 'BoxOffice': '$210,460,015'}, {'Title': 'The Hunt', 'Year': '2012', 'Genre': 'Drama', 'Director': 'Thomas Vinterberg', 'Actors': 'Mads Mikkelsen, Thomas Bo Larsen, Annika Wedderkopp', 'IMDb Rating': '8.3', 'BoxOffice': '$613,308'}, {'Title': 'A Clockwork Orange', 'Year': '1971', 'Genre': 'Crime, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Malcolm McDowell, Patrick Magee, Michael Bates', 'IMDb Rating': '8.3', 'BoxOffice': '$26,617,553'}, {'Title': '2001: A Space Odyssey', 'Year': '1968', 'Genre': 'Adventure, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Keir Dullea, Gary Lockwood, William Sylvester', 'IMDb Rating': '8.3', 'BoxOffice': '$60,481,243'}, {'Title': 'Chinatown', 'Year': '1974', 'Genre': 'Drama, Mystery, Thriller', 'Director': 'Roman Polanski', 'Actors': 'Jack Nicholson, Faye Dunaway, John Huston', 'IMDb Rating': '8.1', 'BoxOffice': '$29,200,000'}, {'Title': 'Monty Python and the Holy Grail', 'Year': '1975', 'Genre': 'Adventure, Comedy, Fantasy', 'Director': 'Terry Gilliam, Terry Jones', 'Actors': 'Graham Chapman, John Cleese, Eric Idle', 'IMDb Rating': '8.2', 'BoxOffice': '$2,562,392'}, {'Title': 'For a Few Dollars More', 'Year': '1965', 'Genre': 'Drama, Western', 'Director': 'Sergio Leone', 'Actors': 'Clint Eastwood, Lee Van Cleef, Gian Maria Volontè', 'IMDb Rating': '8.2', 'BoxOffice': '$15,000,000'}, {'Title': 'The Seventh Seal', 'Year': '1957', 'Genre': 'Drama, Fantasy', 'Director': 'Ingmar Bergman', 'Actors': 'Max von Sydow, Gunnar Björnstrand, Bengt Ekerot', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Ikiru', 'Year': '1952', 'Genre': 'Drama', 'Director': 'Akira Kurosawa', 'Actors': "Takashi Shimura, Nobuo Kaneko, Shin'ichi Himori", 'IMDb Rating': '8.3', 'BoxOffice': '$60,239'}, {'Title': 'Touch of Evil', 'Year': '1958', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Orson Welles', 'Actors': 'Charlton Heston, Orson Welles, Janet Leigh', 'IMDb Rating': '8.0', 'BoxOffice': '$2,247,465'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': 'Bicycle Thieves', 'Year': '1948', 'Genre': 'Drama', 'Director': 'Vittorio De Sica', 'Actors': 'Lamberto Maggiorani, Enzo Staiola, Lianella Carell', 'IMDb Rating': '8.3', 'BoxOffice': '$371,111'}, {'Title': 'Citizen Kane', 'Year': '1941', 'Genre': 'Drama, Mystery', 'Director': 'Orson Welles', 'Actors': 'Orson Welles, Joseph Cotten, Dorothy Comingore', 'IMDb Rating': '8.3', 'BoxOffice': '$1,627,530'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Ran', 'Year': '1985', 'Genre': 'Action, Drama, War', 'Director': 'Akira Kurosawa', 'Actors': 'Tatsuya Nakadai, Akira Terao, Jinpachi Nezu', 'IMDb Rating': '8.2', 'BoxOffice': '$4,135,750'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Metropolis', 'Year': '1927', 'Genre': 'Drama, Sci-Fi', 'Director': 'Fritz Lang', 'Actors': 'Brigitte Helm, Alfred Abel, Gustav Fröhlich', 'IMDb Rating': '8.3', 'BoxOffice': '$1,236,166'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'Wild Strawberries', 'Year': '1957', 'Genre': 'Drama, Romance', 'Director': 'Ingmar Bergman', 'Actors': 'Victor Sjöström, Bibi Andersson, Ingrid Thulin', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Kid', 'Year': '1921', 'Genre': 'Comedy, Drama, Family', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Edna Purviance, Jackie Coogan', 'IMDb Rating': '8.2', 'BoxOffice': 'N/A'}, {'Title': 'Braveheart', 'Year': '1995', 'Genre': 'Biography, Drama, War', 'Director': 'Mel Gibson', 'Actors': 'Mel Gibson, Sophie Marceau, Patrick McGoohan', 'IMDb Rating': '8.3', 'BoxOffice': '$75,609,945'}, {'Title': 'Requiem for a Dream', 'Year': '2000', 'Genre': 'Drama', 'Director': 'Darren Aronofsky', 'Actors': 'Ellen Burstyn, Jared Leto, Jennifer Connelly', 'IMDb Rating': '8.3', 'BoxOffice': '$3,635,482'}, {'Title': 'Eternal Sunshine of the Spotless Mind', 'Year': '2004', 'Genre': 'Drama, Romance, Sci-Fi', 'Director': 'Michel Gondry', 'Actors': 'Jim Carrey, Kate Winslet, Tom Wilkinson', 'IMDb Rating': '8.3', 'BoxOffice': '$34,400,301'}, {'Title': 'Coco', 'Year': '2017', 'Genre': 'Animation, Adventure, Drama', 'Director': 'Lee Unkrich, Adrian Molina', 'Actors': 'Anthony Gonzalez, Gael García Bernal, Benjamin Bratt', 'IMDb Rating': '8.4', 'BoxOffice': '$210,460,015'}, {'Title': 'The Dark Knight Rises', 'Year': '2012', 'Genre': 'Action, Drama, Thriller', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Tom Hardy, Anne Hathaway', 'IMDb Rating': '8.4', 'BoxOffice': '$448,149,584'}, {'Title': 'A Clockwork Orange', 'Year': '1971', 'Genre': 'Crime, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Malcolm McDowell, Patrick Magee, Michael Bates', 'IMDb Rating': '8.3', 'BoxOffice': '$26,617,553'}, {'Title': '2001: A Space Odyssey', 'Year': '1968', 'Genre': 'Adventure, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Keir Dullea, Gary Lockwood, William Sylvester', 'IMDb Rating': '8.3', 'BoxOffice': '$60,481,243'}, {'Title': 'Chinatown', 'Year': '1974', 'Genre': 'Drama, Mystery, Thriller', 'Director': 'Roman Polanski', 'Actors': 'Jack Nicholson, Faye Dunaway, John Huston', 'IMDb Rating': '8.1', 'BoxOffice': '$29,200,000'}, {'Title': 'Monty Python and the Holy Grail', 'Year': '1975', 'Genre': 'Adventure, Comedy, Fantasy', 'Director': 'Terry Gilliam, Terry Jones', 'Actors': 'Graham Chapman, John Cleese, Eric Idle', 'IMDb Rating': '8.2', 'BoxOffice': '$2,562,392'}, {'Title': 'Bicycle Thieves', 'Year': '1948', 'Genre': 'Drama', 'Director': 'Vittorio De Sica', 'Actors': 'Lamberto Maggiorani, Enzo Staiola, Lianella Carell', 'IMDb Rating': '8.3', 'BoxOffice': '$371,111'}, {'Title': 'The Seventh Seal', 'Year': '1957', 'Genre': 'Drama, Fantasy', 'Director': 'Ingmar Bergman', 'Actors': 'Max von Sydow, Gunnar Björnstrand, Bengt Ekerot', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Ikiru', 'Year': '1952', 'Genre': 'Drama', 'Director': 'Akira Kurosawa', 'Actors': "Takashi Shimura, Nobuo Kaneko, Shin'ichi Himori", 'IMDb Rating': '8.3', 'BoxOffice': '$60,239'}, {'Title': 'Touch of Evil', 'Year': '1958', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Orson Welles', 'Actors': 'Charlton Heston, Orson Welles, Janet Leigh', 'IMDb Rating': '8.0', 'BoxOffice': '$2,247,465'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': 'Aliens', 'Year': '1986', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'James Cameron', 'Actors': 'Sigourney Weaver, Michael Biehn, Carrie Henn', 'IMDb Rating': '8.4', 'BoxOffice': '$85,160,248'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Ran', 'Year': '1985', 'Genre': 'Action, Drama, War', 'Director': 'Akira Kurosawa', 'Actors': 'Tatsuya Nakadai, Akira Terao, Jinpachi Nezu', 'IMDb Rating': '8.2', 'BoxOffice': '$4,135,750'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Metropolis', 'Year': '1927', 'Genre': 'Drama, Sci-Fi', 'Director': 'Fritz Lang', 'Actors': 'Brigitte Helm, Alfred Abel, Gustav Fröhlich', 'IMDb Rating': '8.3', 'BoxOffice': '$1,236,166'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'Wild Strawberries', 'Year': '1957', 'Genre': 'Drama, Romance', 'Director': 'Ingmar Bergman', 'Actors': 'Victor Sjöström, Bibi Andersson, Ingrid Thulin', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Kid', 'Year': '1921', 'Genre': 'Comedy, Drama, Family', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Edna Purviance, Jackie Coogan', 'IMDb Rating': '8.2', 'BoxOffice': 'N/A'}, {'Title': 'Braveheart', 'Year': '1995', 'Genre': 'Biography, Drama, War', 'Director': 'Mel Gibson', 'Actors': 'Mel Gibson, Sophie Marceau, Patrick McGoohan', 'IMDb Rating': '8.3', 'BoxOffice': '$75,609,945'}, {'Title': 'Requiem for a Dream', 'Year': '2000', 'Genre': 'Drama', 'Director': 'Darren Aronofsky', 'Actors': 'Ellen Burstyn, Jared Leto, Jennifer Connelly', 'IMDb Rating': '8.3', 'BoxOffice': '$3,635,482'}, {'Title': 'Eternal Sunshine of the Spotless Mind', 'Year': '2004', 'Genre': 'Drama, Romance, Sci-Fi', 'Director': 'Michel Gondry', 'Actors': 'Jim Carrey, Kate Winslet, Tom Wilkinson', 'IMDb Rating': '8.3', 'BoxOffice': '$34,400,301'}, {'Title': 'Coco', 'Year': '2017', 'Genre': 'Animation, Adventure, Drama', 'Director': 'Lee Unkrich, Adrian Molina', 'Actors': 'Anthony Gonzalez, Gael García Bernal, Benjamin Bratt', 'IMDb Rating': '8.4', 'BoxOffice': '$210,460,015'}, {'Title': 'The Dark Knight Rises', 'Year': '2012', 'Genre': 'Action, Drama, Thriller', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Tom Hardy, Anne Hathaway', 'IMDb Rating': '8.4', 'BoxOffice': '$448,149,584'}, {'Title': 'A Clockwork Orange', 'Year': '1971', 'Genre': 'Crime, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Malcolm McDowell, Patrick Magee, Michael Bates', 'IMDb Rating': '8.3', 'BoxOffice': '$26,617,553'}, {'Title': '2001: A Space Odyssey', 'Year': '1968', 'Genre': 'Adventure, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Keir Dullea, Gary Lockwood, William Sylvester', 'IMDb Rating': '8.3', 'BoxOffice': '$60,481,243'}, {'Title': 'Chinatown', 'Year': '1974', 'Genre': 'Drama, Mystery, Thriller', 'Director': 'Roman Polanski', 'Actors': 'Jack Nicholson, Faye Dunaway, John Huston', 'IMDb Rating': '8.1', 'BoxOffice': '$29,200,000'}, {'Title': 'Monty Python and the Holy Grail', 'Year': '1975', 'Genre': 'Adventure, Comedy, Fantasy', 'Director': 'Terry Gilliam, Terry Jones', 'Actors': 'Graham Chapman, John Cleese, Eric Idle', 'IMDb Rating': '8.2', 'BoxOffice': '$2,562,392'}, {'Title': 'Bicycle Thieves', 'Year': '1948', 'Genre': 'Drama', 'Director': 'Vittorio De Sica', 'Actors': 'Lamberto Maggiorani, Enzo Staiola, Lianella Carell', 'IMDb Rating': '8.3', 'BoxOffice': '$371,111'}, {'Title': 'The Seventh Seal', 'Year': '1957', 'Genre': 'Drama, Fantasy', 'Director': 'Ingmar Bergman', 'Actors': 'Max von Sydow, Gunnar Björnstrand, Bengt Ekerot', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Ikiru', 'Year': '1952', 'Genre': 'Drama', 'Director': 'Akira Kurosawa', 'Actors': "Takashi Shimura, Nobuo Kaneko, Shin'ichi Himori", 'IMDb Rating': '8.3', 'BoxOffice': '$60,239'}, {'Title': 'Touch of Evil', 'Year': '1958', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Orson Welles', 'Actors': 'Charlton Heston, Orson Welles, Janet Leigh', 'IMDb Rating': '8.0', 'BoxOffice': '$2,247,465'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': 'Aliens', 'Year': '1986', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'James Cameron', 'Actors': 'Sigourney Weaver, Michael Biehn, Carrie Henn', 'IMDb Rating': '8.4', 'BoxOffice': '$85,160,248'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Ran', 'Year': '1985', 'Genre': 'Action, Drama, War', 'Director': 'Akira Kurosawa', 'Actors': 'Tatsuya Nakadai, Akira Terao, Jinpachi Nezu', 'IMDb Rating': '8.2', 'BoxOffice': '$4,135,750'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Metropolis', 'Year': '1927', 'Genre': 'Drama, Sci-Fi', 'Director': 'Fritz Lang', 'Actors': 'Brigitte Helm, Alfred Abel, Gustav Fröhlich', 'IMDb Rating': '8.3', 'BoxOffice': '$1,236,166'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'Wild Strawberries', 'Year': '1957', 'Genre': 'Drama, Romance', 'Director': 'Ingmar Bergman', 'Actors': 'Victor Sjöström, Bibi Andersson, Ingrid Thulin', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Kid', 'Year': '1921', 'Genre': 'Comedy, Drama, Family', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Edna Purviance, Jackie Coogan', 'IMDb Rating': '8.2', 'BoxOffice': 'N/A'}, {'Title': 'Braveheart', 'Year': '1995', 'Genre': 'Biography, Drama, War', 'Director': 'Mel Gibson', 'Actors': 'Mel Gibson, Sophie Marceau, Patrick McGoohan', 'IMDb Rating': '8.3', 'BoxOffice': '$75,609,945'}, {'Title': 'Requiem for a Dream', 'Year': '2000', 'Genre': 'Drama', 'Director': 'Darren Aronofsky', 'Actors': 'Ellen Burstyn, Jared Leto, Jennifer Connelly', 'IMDb Rating': '8.3', 'BoxOffice': '$3,635,482'}, {'Title': 'Eternal Sunshine of the Spotless Mind', 'Year': '2004', 'Genre': 'Drama, Romance, Sci-Fi', 'Director': 'Michel Gondry', 'Actors': 'Jim Carrey, Kate Winslet, Tom Wilkinson', 'IMDb Rating': '8.3', 'BoxOffice': '$34,400,301'}, {'Title': 'Coco', 'Year': '2017', 'Genre': 'Animation, Adventure, Drama', 'Director': 'Lee Unkrich, Adrian Molina', 'Actors': 'Anthony Gonzalez, Gael García Bernal, Benjamin Bratt', 'IMDb Rating': '8.4', 'BoxOffice': '$210,460,015'}, {'Title': 'The Dark Knight Rises', 'Year': '2012', 'Genre': 'Action, Drama, Thriller', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Tom Hardy, Anne Hathaway', 'IMDb Rating': '8.4', 'BoxOffice': '$448,149,584'}, {'Title': 'A Clockwork Orange', 'Year': '1971', 'Genre': 'Crime, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Malcolm McDowell, Patrick Magee, Michael Bates', 'IMDb Rating': '8.3', 'BoxOffice': '$26,617,553'}, {'Title': '2001: A Space Odyssey', 'Year': '1968', 'Genre': 'Adventure, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Keir Dullea, Gary Lockwood, William Sylvester', 'IMDb Rating': '8.3', 'BoxOffice': '$60,481,243'}, {'Title': 'Chinatown', 'Year': '1974', 'Genre': 'Drama, Mystery, Thriller', 'Director': 'Roman Polanski', 'Actors': 'Jack Nicholson, Faye Dunaway, John Huston', 'IMDb Rating': '8.1', 'BoxOffice': '$29,200,000'}, {'Title': 'Monty Python and the Holy Grail', 'Year': '1975', 'Genre': 'Adventure, Comedy, Fantasy', 'Director': 'Terry Gilliam, Terry Jones', 'Actors': 'Graham Chapman, John Cleese, Eric Idle', 'IMDb Rating': '8.2', 'BoxOffice': '$2,562,392'}, {'Title': 'Bicycle Thieves', 'Year': '1948', 'Genre': 'Drama', 'Director': 'Vittorio De Sica', 'Actors': 'Lamberto Maggiorani, Enzo Staiola, Lianella Carell', 'IMDb Rating': '8.3', 'BoxOffice': '$371,111'}, {'Title': 'The Seventh Seal', 'Year': '1957', 'Genre': 'Drama, Fantasy', 'Director': 'Ingmar Bergman', 'Actors': 'Max von Sydow, Gunnar Björnstrand, Bengt Ekerot', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Ikiru', 'Year': '1952', 'Genre': 'Drama', 'Director': 'Akira Kurosawa', 'Actors': "Takashi Shimura, Nobuo Kaneko, Shin'ichi Himori", 'IMDb Rating': '8.3', 'BoxOffice': '$60,239'}, {'Title': 'Touch of Evil', 'Year': '1958', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Orson Welles', 'Actors': 'Charlton Heston, Orson Welles, Janet Leigh', 'IMDb Rating': '8.0', 'BoxOffice': '$2,247,465'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': 'Aliens', 'Year': '1986', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'James Cameron', 'Actors': 'Sigourney Weaver, Michael Biehn, Carrie Henn', 'IMDb Rating': '8.4', 'BoxOffice': '$85,160,248'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Ran', 'Year': '1985', 'Genre': 'Action, Drama, War', 'Director': 'Akira Kurosawa', 'Actors': 'Tatsuya Nakadai, Akira Terao, Jinpachi Nezu', 'IMDb Rating': '8.2', 'BoxOffice': '$4,135,750'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Metropolis', 'Year': '1927', 'Genre': 'Drama, Sci-Fi', 'Director': 'Fritz Lang', 'Actors': 'Brigitte Helm, Alfred Abel, Gustav Fröhlich', 'IMDb Rating': '8.3', 'BoxOffice': '$1,236,166'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'Wild Strawberries', 'Year': '1957', 'Genre': 'Drama, Romance', 'Director': 'Ingmar Bergman', 'Actors': 'Victor Sjöström, Bibi Andersson, Ingrid Thulin', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Kid', 'Year': '1921', 'Genre': 'Comedy, Drama, Family', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Edna Purviance, Jackie Coogan', 'IMDb Rating': '8.2', 'BoxOffice': 'N/A'},{'Title': 'The Shawshank Redemption', 'Year': '1994', 'Genre': 'Drama', 'Director': 'Frank Darabont', 'Actors': 'Tim Robbins, Morgan Freeman, Bob Gunton', 'IMDb Rating': '9.3', 'BoxOffice': '$28,767,189'}, {'Title': 'The Godfather', 'Year': '1972', 'Genre': 'Crime, Drama', 'Director': 'Francis Ford Coppola', 'Actors': 'Marlon Brando, Al Pacino, James Caan', 'IMDb Rating': '9.2', 'BoxOffice': '$136,381,073'}, {'Title': 'The Godfather Part II', 'Year': '1974', 'Genre': 'Crime, Drama', 'Director': 'Francis Ford Coppola', 'Actors': 'Al Pacino, Robert De Niro, Robert Duvall', 'IMDb Rating': '9.0', 'BoxOffice': '$47,834,595'}, {'Title': 'The Dark Knight', 'Year': '2008', 'Genre': 'Action, Crime, Drama', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Heath Ledger, Aaron Eckhart', 'IMDb Rating': '9.0', 'BoxOffice': '$534,987,076'}, {'Title': '12 Angry Men', 'Year': '1957', 'Genre': 'Crime, Drama', 'Director': 'Sidney Lumet', 'Actors': 'Henry Fonda, Lee J. Cobb, Martin Balsam', 'IMDb Rating': '9.0', 'BoxOffice': 'N/A'}, {'Title': "Schindler's List", 'Year': '1993', 'Genre': 'Biography, Drama, History', 'Director': 'Steven Spielberg', 'Actors': 'Liam Neeson, Ralph Fiennes, Ben Kingsley', 'IMDb Rating': '9.0', 'BoxOffice': '$96,898,818'}, {'Title': 'The Lord of the Rings: The Return of the King', 'Year': '2003', 'Genre': 'Action, Adventure, Drama', 'Director': 'Peter Jackson', 'Actors': 'Elijah Wood, Viggo Mortensen, Ian McKellen', 'IMDb Rating': '9.0', 'BoxOffice': '$379,427,292'}, {'Title': 'Pulp Fiction', 'Year': '1994', 'Genre': 'Crime, Drama', 'Director': 'Quentin Tarantino', 'Actors': 'John Travolta, Uma Thurman, Samuel L. Jackson', 'IMDb Rating': '8.9', 'BoxOffice': '$107,928,762'}, {'Title': 'The Good, the Bad and the Ugly', 'Year': '1966', 'Genre': 'Adventure, Western', 'Director': 'Sergio Leone', 'Actors': 'Clint Eastwood, Eli Wallach, Lee Van Cleef', 'IMDb Rating': '8.8', 'BoxOffice': '$25,100,000'}, {'Title': 'Fight Club', 'Year': '1999', 'Genre': 'Drama', 'Director': 'David Fincher', 'Actors': 'Brad Pitt, Edward Norton, Meat Loaf', 'IMDb Rating': '8.8', 'BoxOffice': '$37,030,102'}, {'Title': 'The Lord of the Rings: The Fellowship of the Ring', 'Year': '2001', 'Genre': 'Action, Adventure, Drama', 'Director': 'Peter Jackson', 'Actors': 'Elijah Wood, Ian McKellen, Orlando Bloom', 'IMDb Rating': '8.9', 'BoxOffice': '$316,115,420'}, {'Title': 'Star Wars: Episode V - The Empire Strikes Back', 'Year': '1980', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Irvin Kershner', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.7', 'BoxOffice': '$292,753,960'}, {'Title': 'Forrest Gump', 'Year': '1994', 'Genre': 'Drama, Romance', 'Director': 'Robert Zemeckis', 'Actors': 'Tom Hanks, Robin Wright, Gary Sinise', 'IMDb Rating': '8.8', 'BoxOffice': '$330,455,270'}, {'Title': 'Inception', 'Year': '2010', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'Christopher Nolan', 'Actors': 'Leonardo DiCaprio, Joseph Gordon-Levitt, Elliot Page', 'IMDb Rating': '8.8', 'BoxOffice': '$292,587,330'}, {'Title': 'The Lord of the Rings: The Two Towers', 'Year': '2002', 'Genre': 'Action, Adventure, Drama', 'Director': 'Peter Jackson', 'Actors': 'Elijah Wood, Ian McKellen, Viggo Mortensen', 'IMDb Rating': '8.8', 'BoxOffice': '$342,952,511'}, {'Title': "One Flew Over the Cuckoo's Nest", 'Year': '1975', 'Genre': 'Drama', 'Director': 'Milos Forman', 'Actors': 'Jack Nicholson, Louise Fletcher, Michael Berryman', 'IMDb Rating': '8.7', 'BoxOffice': '$108,981,275'}, {'Title': 'Goodfellas', 'Year': '1990', 'Genre': 'Biography, Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Ray Liotta, Joe Pesci', 'IMDb Rating': '8.7', 'BoxOffice': '$46,909,721'}, {'Title': 'The Matrix', 'Year': '1999', 'Genre': 'Action, Sci-Fi', 'Director': 'Lana Wachowski, Lilly Wachowski', 'Actors': 'Keanu Reeves, Laurence Fishburne, Carrie-Anne Moss', 'IMDb Rating': '8.7', 'BoxOffice': '$172,076,928'}, {'Title': 'Seven Samurai', 'Year': '1954', 'Genre': 'Action, Drama', 'Director': 'Akira Kurosawa', 'Actors': 'Toshirô Mifune, Takashi Shimura, Keiko Tsushima', 'IMDb Rating': '8.6', 'BoxOffice': '$318,649'}, {'Title': 'Star Wars: Episode IV - A New Hope', 'Year': '1977', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'George Lucas', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.6', 'BoxOffice': '$460,998,507'}, {'Title': 'City of God', 'Year': '2002', 'Genre': 'Crime, Drama', 'Director': 'Fernando Meirelles, Kátia Lund', 'Actors': 'Alexandre Rodrigues, Leandro Firmino, Matheus Nachtergaele', 'IMDb Rating': '8.6', 'BoxOffice': '$7,564,459'}, {'Title': 'Se7en', 'Year': '1995', 'Genre': 'Crime, Drama, Mystery', 'Director': 'David Fincher', 'Actors': 'Morgan Freeman, Brad Pitt, Kevin Spacey', 'IMDb Rating': '8.6', 'BoxOffice': '$100,125,643'}, {'Title': 'The Silence of the Lambs', 'Year': '1991', 'Genre': 'Crime, Drama, Thriller', 'Director': 'Jonathan Demme', 'Actors': 'Jodie Foster, Anthony Hopkins, Scott Glenn', 'IMDb Rating': '8.6', 'BoxOffice': '$130,742,922'}, {'Title': "It's a Wonderful Life", 'Year': '1946', 'Genre': 'Drama, Family, Fantasy', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Donna Reed, Lionel Barrymore', 'IMDb Rating': '8.6', 'BoxOffice': '$1,483,643'}, {'Title': 'The Usual Suspects', 'Year': '1995', 'Genre': 'Crime, Drama, Mystery', 'Director': 'Bryan Singer', 'Actors': 'Kevin Spacey, Gabriel Byrne, Chazz Palminteri', 'IMDb Rating': '8.5', 'BoxOffice': '$23,341,568'}, {'Title': 'Life Is Beautiful', 'Year': '1997', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Roberto Benigni', 'Actors': 'Roberto Benigni, Nicoletta Braschi, Giorgio Cantarini', 'IMDb Rating': '8.6', 'BoxOffice': '$57,563,264'}, {'Title': 'Léon: The Professional', 'Year': '1994', 'Genre': 'Action, Crime, Drama', 'Director': 'Luc Besson', 'Actors': 'Jean Reno, Gary Oldman, Natalie Portman', 'IMDb Rating': '8.5', 'BoxOffice': '$19,501,238'}, {'Title': 'Spirited Away', 'Year': '2001', 'Genre': 'Animation, Adventure, Family', 'Director': 'Hayao Miyazaki', 'Actors': 'Daveigh Chase, Suzanne Pleshette, Miyu Irino', 'IMDb Rating': '8.6', 'BoxOffice': '$15,205,725'}, {'Title': 'Saving Private Ryan', 'Year': '1998', 'Genre': 'Drama, War', 'Director': 'Steven Spielberg', 'Actors': 'Tom Hanks, Matt Damon, Tom Sizemore', 'IMDb Rating': '8.6', 'BoxOffice': '$217,049,603'}, {'Title': 'The Green Mile', 'Year': '1999', 'Genre': 'Crime, Drama, Fantasy', 'Director': 'Frank Darabont', 'Actors': 'Tom Hanks, Michael Clarke Duncan, David Morse', 'IMDb Rating': '8.6', 'BoxOffice': '$136,801,374'}, {'Title': 'Interstellar', 'Year': '2014', 'Genre': 'Adventure, Drama, Sci-Fi', 'Director': 'Christopher Nolan', 'Actors': 'Matthew McConaughey, Anne Hathaway, Jessica Chastain', 'IMDb Rating': '8.7', 'BoxOffice': '$188,020,017'}, {'Title': 'Psycho', 'Year': '1960', 'Genre': 'Horror, Mystery, Thriller', 'Director': 'Alfred Hitchcock', 'Actors': 'Anthony Perkins, Janet Leigh, Vera Miles', 'IMDb Rating': '8.5', 'BoxOffice': '$32,000,000'}, {'Title': 'American History X', 'Year': '1998', 'Genre': 'Crime, Drama', 'Director': 'Tony Kaye', 'Actors': "Edward Norton, Edward Furlong, Beverly D'Angelo", 'IMDb Rating': '8.5', 'BoxOffice': '$6,719,864'}, {'Title': 'City Lights', 'Year': '1931', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Virginia Cherrill, Florence Lee', 'IMDb Rating': '8.5', 'BoxOffice': '$19,181'}, {'Title': 'Casablanca', 'Year': '1942', 'Genre': 'Drama, Romance, War', 'Director': 'Michael Curtiz', 'Actors': 'Humphrey Bogart, Ingrid Bergman, Paul Henreid', 'IMDb Rating': '8.5', 'BoxOffice': '$4,219,709'}, {'Title': 'The Pianist', 'Year': '2002', 'Genre': 'Biography, Drama, Music', 'Director': 'Roman Polanski', 'Actors': 'Adrien Brody, Thomas Kretschmann, Frank Finlay', 'IMDb Rating': '8.5', 'BoxOffice': '$32,588,440'}, {'Title': 'Gladiator', 'Year': '2000', 'Genre': 'Action, Adventure, Drama', 'Director': 'Ridley Scott', 'Actors': 'Russell Crowe, Joaquin Phoenix, Connie Nielsen', 'IMDb Rating': '8.5', 'BoxOffice': '$187,705,427'}, {'Title': 'Modern Times', 'Year': '1936', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Paulette Goddard, Henry Bergman', 'IMDb Rating': '8.5', 'BoxOffice': '$163,577'}, {'Title': 'The Intouchables', 'Year': '2011', 'Genre': 'Comedy, Drama', 'Director': 'Olivier Nakache, Éric Toledano', 'Actors': 'François Cluzet, Omar Sy, Anne Le Ny', 'IMDb Rating': '8.5', 'BoxOffice': '$10,198,820'}, {'Title': 'The Departed', 'Year': '2006', 'Genre': 'Crime, Drama, Thriller', 'Director': 'Martin Scorsese', 'Actors': 'Leonardo DiCaprio, Matt Damon, Jack Nicholson', 'IMDb Rating': '8.5', 'BoxOffice': '$132,399,394'}, {'Title': 'Whiplash', 'Year': '2014', 'Genre': 'Drama, Music', 'Director': 'Damien Chazelle', 'Actors': 'Miles Teller, J.K. Simmons, Melissa Benoist', 'IMDb Rating': '8.5', 'BoxOffice': '$13,092,000'}, {'Title': 'The Prestige', 'Year': '2006', 'Genre': 'Drama, Mystery, Sci-Fi', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Hugh Jackman, Scarlett Johansson', 'IMDb Rating': '8.5', 'BoxOffice': '$53,089,891'}]



# 데이터프레임 생성
df = pd.DataFrame(data)

# 박스 오피스 수익에서 '$'와 ',' 제거 및 'N/A' 처리
df['BoxOffice'] = df['BoxOffice'].replace({'\$': '', ',': '', 'N/A': None}, regex=True)


# 박스 오피스 수익을 float 타입으로 변환
df['BoxOffice'] = pd.to_numeric(df['BoxOffice'], errors='coerce')

# IMDb 평점을 float 타입으로 변환
df['IMDb Rating'] = pd.to_numeric(df['IMDb Rating'], errors='coerce')


# 기초 통계량 및 상관 계수 출력
print(df.describe())
correlation = df['IMDb Rating'].corr(df['BoxOffice'])
print(f"Correlation between IMDb Rating and Box Office Revenue: {correlation}")

# 데이터 시각화
plt.figure(figsize=(10, 6))
sns.scatterplot(x='IMDb Rating', y='BoxOffice', data=df)
plt.title('Relationship Between IMDb Rating and Box Office Revenue')
plt.xlabel('IMDb Rating')
plt.ylabel('Box Office Revenue (in $)')
plt.grid(True)
plt.show()

       IMDb Rating     BoxOffice
count   257.000000  2.310000e+02
mean      8.331128  6.786665e+07
std       0.203014  1.116055e+08
min       8.000000  1.918100e+04
25%       8.200000  1.884537e+06
50%       8.300000  2.661755e+07
75%       8.400000  6.804559e+07
max       9.300000  5.349871e+08
Correlation between IMDb Rating and Box Office Revenue: 0.4070015035988023

png

import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns

# 제공받은 데이터
data = [{'Title': 'Reservoir Dogs', 'Year': '1992', 'Genre': 'Crime, Thriller', 'Director': 'Quentin Tarantino', 'Actors': 'Harvey Keitel, Tim Roth, Michael Madsen', 'IMDb Rating': '8.3', 'BoxOffice': '$2,832,029'}, {'Title': 'The Hunt', 'Year': '2012', 'Genre': 'Drama', 'Director': 'Thomas Vinterberg', 'Actors': 'Mads Mikkelsen, Thomas Bo Larsen, Annika Wedderkopp', 'IMDb Rating': '8.3', 'BoxOffice': '$613,308'}, {'Title': 'All About Eve', 'Year': '1950', 'Genre': 'Drama', 'Director': 'Joseph L. Mankiewicz', 'Actors': 'Bette Davis, Anne Baxter, George Sanders', 'IMDb Rating': '8.2', 'BoxOffice': '$63,463'}, {'Title': 'Monty Python and the Holy Grail', 'Year': '1975', 'Genre': 'Adventure, Comedy, Fantasy', 'Director': 'Terry Gilliam, Terry Jones', 'Actors': 'Graham Chapman, John Cleese, Eric Idle', 'IMDb Rating': '8.2', 'BoxOffice': '$2,562,392'}, {'Title': 'Chinatown', 'Year': '1974', 'Genre': 'Drama, Mystery, Thriller', 'Director': 'Roman Polanski', 'Actors': 'Jack Nicholson, Faye Dunaway, John Huston', 'IMDb Rating': '8.1', 'BoxOffice': '$29,200,000'}, {'Title': 'Wild Strawberries', 'Year': '1957', 'Genre': 'Drama, Romance', 'Director': 'Ingmar Bergman', 'Actors': 'Victor Sjöström, Bibi Andersson, Ingrid Thulin', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'The Kid', 'Year': '1921', 'Genre': 'Comedy, Drama, Family', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Edna Purviance, Jackie Coogan', 'IMDb Rating': '8.2', 'BoxOffice': 'N/A'}, {'Title': 'Touch of Evil', 'Year': '1958', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Orson Welles', 'Actors': 'Charlton Heston, Orson Welles, Janet Leigh', 'IMDb Rating': '8.0', 'BoxOffice': '$2,247,465'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'A Clockwork Orange', 'Year': '1971', 'Genre': 'Crime, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Malcolm McDowell, Patrick Magee, Michael Bates', 'IMDb Rating': '8.3', 'BoxOffice': '$26,617,553'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': '2001: A Space Odyssey', 'Year': '1968', 'Genre': 'Adventure, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Keir Dullea, Gary Lockwood, William Sylvester', 'IMDb Rating': '8.3', 'BoxOffice': '$60,481,243'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'Citizen Kane', 'Year': '1941', 'Genre': 'Drama, Mystery', 'Director': 'Orson Welles', 'Actors': 'Orson Welles, Joseph Cotten, Dorothy Comingore', 'IMDb Rating': '8.3', 'BoxOffice': '$1,627,530'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'Bicycle Thieves', 'Year': '1948', 'Genre': 'Drama', 'Director': 'Vittorio De Sica', 'Actors': 'Lamberto Maggiorani, Enzo Staiola, Lianella Carell', 'IMDb Rating': '8.3', 'BoxOffice': '$371,111'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': 'For a Few Dollars More', 'Year': '1965', 'Genre': 'Drama, Western', 'Director': 'Sergio Leone', 'Actors': 'Clint Eastwood, Lee Van Cleef, Gian Maria Volontè', 'IMDb Rating': '8.2', 'BoxOffice': '$15,000,000'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': 'Eternal Sunshine of the Spotless Mind', 'Year': '2004', 'Genre': 'Drama, Romance, Sci-Fi', 'Director': 'Michel Gondry', 'Actors': 'Jim Carrey, Kate Winslet, Tom Wilkinson', 'IMDb Rating': '8.3', 'BoxOffice': '$34,400,301'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Metropolis', 'Year': '1927', 'Genre': 'Drama, Sci-Fi', 'Director': 'Fritz Lang', 'Actors': 'Brigitte Helm, Alfred Abel, Gustav Fröhlich', 'IMDb Rating': '8.3', 'BoxOffice': '$1,236,166'}, {'Title': 'Ran', 'Year': '1985', 'Genre': 'Action, Drama, War', 'Director': 'Akira Kurosawa', 'Actors': 'Tatsuya Nakadai, Akira Terao, Jinpachi Nezu', 'IMDb Rating': '8.2', 'BoxOffice': '$4,135,750'}, {'Title': 'The Seventh Seal', 'Year': '1957', 'Genre': 'Drama, Fantasy', 'Director': 'Ingmar Bergman', 'Actors': 'Max von Sydow, Gunnar Björnstrand, Bengt Ekerot', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Coco', 'Year': '2017', 'Genre': 'Animation, Adventure, Drama', 'Director': 'Lee Unkrich, Adrian Molina', 'Actors': 'Anthony Gonzalez, Gael García Bernal, Benjamin Bratt', 'IMDb Rating': '8.4', 'BoxOffice': '$210,460,015'}, {'Title': 'The Dark Knight Rises', 'Year': '2012', 'Genre': 'Action, Drama, Thriller', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Tom Hardy, Anne Hathaway', 'IMDb Rating': '8.4', 'BoxOffice': '$448,149,584'}, {'Title': 'Braveheart', 'Year': '1995', 'Genre': 'Biography, Drama, War', 'Director': 'Mel Gibson', 'Actors': 'Mel Gibson, Sophie Marceau, Patrick McGoohan', 'IMDb Rating': '8.3', 'BoxOffice': '$75,609,945'}, {'Title': 'Requiem for a Dream', 'Year': '2000', 'Genre': 'Drama', 'Director': 'Darren Aronofsky', 'Actors': 'Ellen Burstyn, Jared Leto, Jennifer Connelly', 'IMDb Rating': '8.3', 'BoxOffice': '$3,635,482'}, {'Title': 'Ikiru', 'Year': '1952', 'Genre': 'Drama', 'Director': 'Akira Kurosawa', 'Actors': "Takashi Shimura, Nobuo Kaneko, Shin'ichi Himori", 'IMDb Rating': '8.3', 'BoxOffice': '$60,239'}, {'Title': 'Aliens', 'Year': '1986', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'James Cameron', 'Actors': 'Sigourney Weaver, Michael Biehn, Carrie Henn', 'IMDb Rating': '8.4', 'BoxOffice': '$85,160,248'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'All About Eve', 'Year': '1950', 'Genre': 'Drama', 'Director': 'Joseph L. Mankiewicz', 'Actors': 'Bette Davis, Anne Baxter, George Sanders', 'IMDb Rating': '8.2', 'BoxOffice': '$63,463'}, {'Title': 'The Kid', 'Year': '1921', 'Genre': 'Comedy, Drama, Family', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Edna Purviance, Jackie Coogan', 'IMDb Rating': '8.2', 'BoxOffice': 'N/A'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': 'Monty Python and the Holy Grail', 'Year': '1975', 'Genre': 'Adventure, Comedy, Fantasy', 'Director': 'Terry Gilliam, Terry Jones', 'Actors': 'Graham Chapman, John Cleese, Eric Idle', 'IMDb Rating': '8.2', 'BoxOffice': '$2,562,392'}, {'Title': 'Wild Strawberries', 'Year': '1957', 'Genre': 'Drama, Romance', 'Director': 'Ingmar Bergman', 'Actors': 'Victor Sjöström, Bibi Andersson, Ingrid Thulin', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'Citizen Kane', 'Year': '1941', 'Genre': 'Drama, Mystery', 'Director': 'Orson Welles', 'Actors': 'Orson Welles, Joseph Cotten, Dorothy Comingore', 'IMDb Rating': '8.3', 'BoxOffice': '$1,627,530'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'Aliens', 'Year': '1986', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'James Cameron', 'Actors': 'Sigourney Weaver, Michael Biehn, Carrie Henn', 'IMDb Rating': '8.4', 'BoxOffice': '$85,160,248'}, {'Title': 'Reservoir Dogs', 'Year': '1992', 'Genre': 'Crime, Thriller', 'Director': 'Quentin Tarantino', 'Actors': 'Harvey Keitel, Tim Roth, Michael Madsen', 'IMDb Rating': '8.3', 'BoxOffice': '$2,832,029'}, {'Title': 'Braveheart', 'Year': '1995', 'Genre': 'Biography, Drama, War', 'Director': 'Mel Gibson', 'Actors': 'Mel Gibson, Sophie Marceau, Patrick McGoohan', 'IMDb Rating': '8.3', 'BoxOffice': '$75,609,945'}, {'Title': 'Requiem for a Dream', 'Year': '2000', 'Genre': 'Drama', 'Director': 'Darren Aronofsky', 'Actors': 'Ellen Burstyn, Jared Leto, Jennifer Connelly', 'IMDb Rating': '8.3', 'BoxOffice': '$3,635,482'}, {'Title': 'Eternal Sunshine of the Spotless Mind', 'Year': '2004', 'Genre': 'Drama, Romance, Sci-Fi', 'Director': 'Michel Gondry', 'Actors': 'Jim Carrey, Kate Winslet, Tom Wilkinson', 'IMDb Rating': '8.3', 'BoxOffice': '$34,400,301'}, {'Title': 'The Dark Knight Rises', 'Year': '2012', 'Genre': 'Action, Drama, Thriller', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Tom Hardy, Anne Hathaway', 'IMDb Rating': '8.4', 'BoxOffice': '$448,149,584'}, {'Title': 'Coco', 'Year': '2017', 'Genre': 'Animation, Adventure, Drama', 'Director': 'Lee Unkrich, Adrian Molina', 'Actors': 'Anthony Gonzalez, Gael García Bernal, Benjamin Bratt', 'IMDb Rating': '8.4', 'BoxOffice': '$210,460,015'}, {'Title': 'The Hunt', 'Year': '2012', 'Genre': 'Drama', 'Director': 'Thomas Vinterberg', 'Actors': 'Mads Mikkelsen, Thomas Bo Larsen, Annika Wedderkopp', 'IMDb Rating': '8.3', 'BoxOffice': '$613,308'}, {'Title': 'A Clockwork Orange', 'Year': '1971', 'Genre': 'Crime, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Malcolm McDowell, Patrick Magee, Michael Bates', 'IMDb Rating': '8.3', 'BoxOffice': '$26,617,553'}, {'Title': '2001: A Space Odyssey', 'Year': '1968', 'Genre': 'Adventure, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Keir Dullea, Gary Lockwood, William Sylvester', 'IMDb Rating': '8.3', 'BoxOffice': '$60,481,243'}, {'Title': 'Ikiru', 'Year': '1952', 'Genre': 'Drama', 'Director': 'Akira Kurosawa', 'Actors': "Takashi Shimura, Nobuo Kaneko, Shin'ichi Himori", 'IMDb Rating': '8.3', 'BoxOffice': '$60,239'}, {'Title': 'The Seventh Seal', 'Year': '1957', 'Genre': 'Drama, Fantasy', 'Director': 'Ingmar Bergman', 'Actors': 'Max von Sydow, Gunnar Björnstrand, Bengt Ekerot', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': 'For a Few Dollars More', 'Year': '1965', 'Genre': 'Drama, Western', 'Director': 'Sergio Leone', 'Actors': 'Clint Eastwood, Lee Van Cleef, Gian Maria Volontè', 'IMDb Rating': '8.2', 'BoxOffice': '$15,000,000'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'All About Eve', 'Year': '1950', 'Genre': 'Drama', 'Director': 'Joseph L. Mankiewicz', 'Actors': 'Bette Davis, Anne Baxter, George Sanders', 'IMDb Rating': '8.2', 'BoxOffice': '$63,463'}, {'Title': 'Metropolis', 'Year': '1927', 'Genre': 'Drama, Sci-Fi', 'Director': 'Fritz Lang', 'Actors': 'Brigitte Helm, Alfred Abel, Gustav Fröhlich', 'IMDb Rating': '8.3', 'BoxOffice': '$1,236,166'}, {'Title': 'Ran', 'Year': '1985', 'Genre': 'Action, Drama, War', 'Director': 'Akira Kurosawa', 'Actors': 'Tatsuya Nakadai, Akira Terao, Jinpachi Nezu', 'IMDb Rating': '8.2', 'BoxOffice': '$4,135,750'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'Touch of Evil', 'Year': '1958', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Orson Welles', 'Actors': 'Charlton Heston, Orson Welles, Janet Leigh', 'IMDb Rating': '8.0', 'BoxOffice': '$2,247,465'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': 'All About Eve', 'Year': '1950', 'Genre': 'Drama', 'Director': 'Joseph L. Mankiewicz', 'Actors': 'Bette Davis, Anne Baxter, George Sanders', 'IMDb Rating': '8.2', 'BoxOffice': '$63,463'}, {'Title': 'Citizen Kane', 'Year': '1941', 'Genre': 'Drama, Mystery', 'Director': 'Orson Welles', 'Actors': 'Orson Welles, Joseph Cotten, Dorothy Comingore', 'IMDb Rating': '8.3', 'BoxOffice': '$1,627,530'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'Aliens', 'Year': '1986', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'James Cameron', 'Actors': 'Sigourney Weaver, Michael Biehn, Carrie Henn', 'IMDb Rating': '8.4', 'BoxOffice': '$85,160,248'}, {'Title': 'Reservoir Dogs', 'Year': '1992', 'Genre': 'Crime, Thriller', 'Director': 'Quentin Tarantino', 'Actors': 'Harvey Keitel, Tim Roth, Michael Madsen', 'IMDb Rating': '8.3', 'BoxOffice': '$2,832,029'}, {'Title': 'Braveheart', 'Year': '1995', 'Genre': 'Biography, Drama, War', 'Director': 'Mel Gibson', 'Actors': 'Mel Gibson, Sophie Marceau, Patrick McGoohan', 'IMDb Rating': '8.3', 'BoxOffice': '$75,609,945'}, {'Title': 'Requiem for a Dream', 'Year': '2000', 'Genre': 'Drama', 'Director': 'Darren Aronofsky', 'Actors': 'Ellen Burstyn, Jared Leto, Jennifer Connelly', 'IMDb Rating': '8.3', 'BoxOffice': '$3,635,482'}, {'Title': 'Eternal Sunshine of the Spotless Mind', 'Year': '2004', 'Genre': 'Drama, Romance, Sci-Fi', 'Director': 'Michel Gondry', 'Actors': 'Jim Carrey, Kate Winslet, Tom Wilkinson', 'IMDb Rating': '8.3', 'BoxOffice': '$34,400,301'}, {'Title': 'The Dark Knight Rises', 'Year': '2012', 'Genre': 'Action, Drama, Thriller', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Tom Hardy, Anne Hathaway', 'IMDb Rating': '8.4', 'BoxOffice': '$448,149,584'}, {'Title': 'Coco', 'Year': '2017', 'Genre': 'Animation, Adventure, Drama', 'Director': 'Lee Unkrich, Adrian Molina', 'Actors': 'Anthony Gonzalez, Gael García Bernal, Benjamin Bratt', 'IMDb Rating': '8.4', 'BoxOffice': '$210,460,015'}, {'Title': 'The Hunt', 'Year': '2012', 'Genre': 'Drama', 'Director': 'Thomas Vinterberg', 'Actors': 'Mads Mikkelsen, Thomas Bo Larsen, Annika Wedderkopp', 'IMDb Rating': '8.3', 'BoxOffice': '$613,308'}, {'Title': 'A Clockwork Orange', 'Year': '1971', 'Genre': 'Crime, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Malcolm McDowell, Patrick Magee, Michael Bates', 'IMDb Rating': '8.3', 'BoxOffice': '$26,617,553'}, {'Title': '2001: A Space Odyssey', 'Year': '1968', 'Genre': 'Adventure, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Keir Dullea, Gary Lockwood, William Sylvester', 'IMDb Rating': '8.3', 'BoxOffice': '$60,481,243'}, {'Title': 'Chinatown', 'Year': '1974', 'Genre': 'Drama, Mystery, Thriller', 'Director': 'Roman Polanski', 'Actors': 'Jack Nicholson, Faye Dunaway, John Huston', 'IMDb Rating': '8.1', 'BoxOffice': '$29,200,000'}, {'Title': 'Monty Python and the Holy Grail', 'Year': '1975', 'Genre': 'Adventure, Comedy, Fantasy', 'Director': 'Terry Gilliam, Terry Jones', 'Actors': 'Graham Chapman, John Cleese, Eric Idle', 'IMDb Rating': '8.2', 'BoxOffice': '$2,562,392'}, {'Title': 'For a Few Dollars More', 'Year': '1965', 'Genre': 'Drama, Western', 'Director': 'Sergio Leone', 'Actors': 'Clint Eastwood, Lee Van Cleef, Gian Maria Volontè', 'IMDb Rating': '8.2', 'BoxOffice': '$15,000,000'}, {'Title': 'The Seventh Seal', 'Year': '1957', 'Genre': 'Drama, Fantasy', 'Director': 'Ingmar Bergman', 'Actors': 'Max von Sydow, Gunnar Björnstrand, Bengt Ekerot', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Ikiru', 'Year': '1952', 'Genre': 'Drama', 'Director': 'Akira Kurosawa', 'Actors': "Takashi Shimura, Nobuo Kaneko, Shin'ichi Himori", 'IMDb Rating': '8.3', 'BoxOffice': '$60,239'}, {'Title': 'Touch of Evil', 'Year': '1958', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Orson Welles', 'Actors': 'Charlton Heston, Orson Welles, Janet Leigh', 'IMDb Rating': '8.0', 'BoxOffice': '$2,247,465'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': 'Bicycle Thieves', 'Year': '1948', 'Genre': 'Drama', 'Director': 'Vittorio De Sica', 'Actors': 'Lamberto Maggiorani, Enzo Staiola, Lianella Carell', 'IMDb Rating': '8.3', 'BoxOffice': '$371,111'}, {'Title': 'Citizen Kane', 'Year': '1941', 'Genre': 'Drama, Mystery', 'Director': 'Orson Welles', 'Actors': 'Orson Welles, Joseph Cotten, Dorothy Comingore', 'IMDb Rating': '8.3', 'BoxOffice': '$1,627,530'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Ran', 'Year': '1985', 'Genre': 'Action, Drama, War', 'Director': 'Akira Kurosawa', 'Actors': 'Tatsuya Nakadai, Akira Terao, Jinpachi Nezu', 'IMDb Rating': '8.2', 'BoxOffice': '$4,135,750'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Metropolis', 'Year': '1927', 'Genre': 'Drama, Sci-Fi', 'Director': 'Fritz Lang', 'Actors': 'Brigitte Helm, Alfred Abel, Gustav Fröhlich', 'IMDb Rating': '8.3', 'BoxOffice': '$1,236,166'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'Wild Strawberries', 'Year': '1957', 'Genre': 'Drama, Romance', 'Director': 'Ingmar Bergman', 'Actors': 'Victor Sjöström, Bibi Andersson, Ingrid Thulin', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Kid', 'Year': '1921', 'Genre': 'Comedy, Drama, Family', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Edna Purviance, Jackie Coogan', 'IMDb Rating': '8.2', 'BoxOffice': 'N/A'}, {'Title': 'Braveheart', 'Year': '1995', 'Genre': 'Biography, Drama, War', 'Director': 'Mel Gibson', 'Actors': 'Mel Gibson, Sophie Marceau, Patrick McGoohan', 'IMDb Rating': '8.3', 'BoxOffice': '$75,609,945'}, {'Title': 'Requiem for a Dream', 'Year': '2000', 'Genre': 'Drama', 'Director': 'Darren Aronofsky', 'Actors': 'Ellen Burstyn, Jared Leto, Jennifer Connelly', 'IMDb Rating': '8.3', 'BoxOffice': '$3,635,482'}, {'Title': 'Eternal Sunshine of the Spotless Mind', 'Year': '2004', 'Genre': 'Drama, Romance, Sci-Fi', 'Director': 'Michel Gondry', 'Actors': 'Jim Carrey, Kate Winslet, Tom Wilkinson', 'IMDb Rating': '8.3', 'BoxOffice': '$34,400,301'}, {'Title': 'Coco', 'Year': '2017', 'Genre': 'Animation, Adventure, Drama', 'Director': 'Lee Unkrich, Adrian Molina', 'Actors': 'Anthony Gonzalez, Gael García Bernal, Benjamin Bratt', 'IMDb Rating': '8.4', 'BoxOffice': '$210,460,015'}, {'Title': 'The Dark Knight Rises', 'Year': '2012', 'Genre': 'Action, Drama, Thriller', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Tom Hardy, Anne Hathaway', 'IMDb Rating': '8.4', 'BoxOffice': '$448,149,584'}, {'Title': 'A Clockwork Orange', 'Year': '1971', 'Genre': 'Crime, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Malcolm McDowell, Patrick Magee, Michael Bates', 'IMDb Rating': '8.3', 'BoxOffice': '$26,617,553'}, {'Title': '2001: A Space Odyssey', 'Year': '1968', 'Genre': 'Adventure, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Keir Dullea, Gary Lockwood, William Sylvester', 'IMDb Rating': '8.3', 'BoxOffice': '$60,481,243'}, {'Title': 'Chinatown', 'Year': '1974', 'Genre': 'Drama, Mystery, Thriller', 'Director': 'Roman Polanski', 'Actors': 'Jack Nicholson, Faye Dunaway, John Huston', 'IMDb Rating': '8.1', 'BoxOffice': '$29,200,000'}, {'Title': 'Monty Python and the Holy Grail', 'Year': '1975', 'Genre': 'Adventure, Comedy, Fantasy', 'Director': 'Terry Gilliam, Terry Jones', 'Actors': 'Graham Chapman, John Cleese, Eric Idle', 'IMDb Rating': '8.2', 'BoxOffice': '$2,562,392'}, {'Title': 'Bicycle Thieves', 'Year': '1948', 'Genre': 'Drama', 'Director': 'Vittorio De Sica', 'Actors': 'Lamberto Maggiorani, Enzo Staiola, Lianella Carell', 'IMDb Rating': '8.3', 'BoxOffice': '$371,111'}, {'Title': 'The Seventh Seal', 'Year': '1957', 'Genre': 'Drama, Fantasy', 'Director': 'Ingmar Bergman', 'Actors': 'Max von Sydow, Gunnar Björnstrand, Bengt Ekerot', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Ikiru', 'Year': '1952', 'Genre': 'Drama', 'Director': 'Akira Kurosawa', 'Actors': "Takashi Shimura, Nobuo Kaneko, Shin'ichi Himori", 'IMDb Rating': '8.3', 'BoxOffice': '$60,239'}, {'Title': 'Touch of Evil', 'Year': '1958', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Orson Welles', 'Actors': 'Charlton Heston, Orson Welles, Janet Leigh', 'IMDb Rating': '8.0', 'BoxOffice': '$2,247,465'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': 'Aliens', 'Year': '1986', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'James Cameron', 'Actors': 'Sigourney Weaver, Michael Biehn, Carrie Henn', 'IMDb Rating': '8.4', 'BoxOffice': '$85,160,248'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Ran', 'Year': '1985', 'Genre': 'Action, Drama, War', 'Director': 'Akira Kurosawa', 'Actors': 'Tatsuya Nakadai, Akira Terao, Jinpachi Nezu', 'IMDb Rating': '8.2', 'BoxOffice': '$4,135,750'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Metropolis', 'Year': '1927', 'Genre': 'Drama, Sci-Fi', 'Director': 'Fritz Lang', 'Actors': 'Brigitte Helm, Alfred Abel, Gustav Fröhlich', 'IMDb Rating': '8.3', 'BoxOffice': '$1,236,166'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'Wild Strawberries', 'Year': '1957', 'Genre': 'Drama, Romance', 'Director': 'Ingmar Bergman', 'Actors': 'Victor Sjöström, Bibi Andersson, Ingrid Thulin', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Kid', 'Year': '1921', 'Genre': 'Comedy, Drama, Family', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Edna Purviance, Jackie Coogan', 'IMDb Rating': '8.2', 'BoxOffice': 'N/A'}, {'Title': 'Braveheart', 'Year': '1995', 'Genre': 'Biography, Drama, War', 'Director': 'Mel Gibson', 'Actors': 'Mel Gibson, Sophie Marceau, Patrick McGoohan', 'IMDb Rating': '8.3', 'BoxOffice': '$75,609,945'}, {'Title': 'Requiem for a Dream', 'Year': '2000', 'Genre': 'Drama', 'Director': 'Darren Aronofsky', 'Actors': 'Ellen Burstyn, Jared Leto, Jennifer Connelly', 'IMDb Rating': '8.3', 'BoxOffice': '$3,635,482'}, {'Title': 'Eternal Sunshine of the Spotless Mind', 'Year': '2004', 'Genre': 'Drama, Romance, Sci-Fi', 'Director': 'Michel Gondry', 'Actors': 'Jim Carrey, Kate Winslet, Tom Wilkinson', 'IMDb Rating': '8.3', 'BoxOffice': '$34,400,301'}, {'Title': 'Coco', 'Year': '2017', 'Genre': 'Animation, Adventure, Drama', 'Director': 'Lee Unkrich, Adrian Molina', 'Actors': 'Anthony Gonzalez, Gael García Bernal, Benjamin Bratt', 'IMDb Rating': '8.4', 'BoxOffice': '$210,460,015'}, {'Title': 'The Dark Knight Rises', 'Year': '2012', 'Genre': 'Action, Drama, Thriller', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Tom Hardy, Anne Hathaway', 'IMDb Rating': '8.4', 'BoxOffice': '$448,149,584'}, {'Title': 'A Clockwork Orange', 'Year': '1971', 'Genre': 'Crime, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Malcolm McDowell, Patrick Magee, Michael Bates', 'IMDb Rating': '8.3', 'BoxOffice': '$26,617,553'}, {'Title': '2001: A Space Odyssey', 'Year': '1968', 'Genre': 'Adventure, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Keir Dullea, Gary Lockwood, William Sylvester', 'IMDb Rating': '8.3', 'BoxOffice': '$60,481,243'}, {'Title': 'Chinatown', 'Year': '1974', 'Genre': 'Drama, Mystery, Thriller', 'Director': 'Roman Polanski', 'Actors': 'Jack Nicholson, Faye Dunaway, John Huston', 'IMDb Rating': '8.1', 'BoxOffice': '$29,200,000'}, {'Title': 'Monty Python and the Holy Grail', 'Year': '1975', 'Genre': 'Adventure, Comedy, Fantasy', 'Director': 'Terry Gilliam, Terry Jones', 'Actors': 'Graham Chapman, John Cleese, Eric Idle', 'IMDb Rating': '8.2', 'BoxOffice': '$2,562,392'}, {'Title': 'Bicycle Thieves', 'Year': '1948', 'Genre': 'Drama', 'Director': 'Vittorio De Sica', 'Actors': 'Lamberto Maggiorani, Enzo Staiola, Lianella Carell', 'IMDb Rating': '8.3', 'BoxOffice': '$371,111'}, {'Title': 'The Seventh Seal', 'Year': '1957', 'Genre': 'Drama, Fantasy', 'Director': 'Ingmar Bergman', 'Actors': 'Max von Sydow, Gunnar Björnstrand, Bengt Ekerot', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Ikiru', 'Year': '1952', 'Genre': 'Drama', 'Director': 'Akira Kurosawa', 'Actors': "Takashi Shimura, Nobuo Kaneko, Shin'ichi Himori", 'IMDb Rating': '8.3', 'BoxOffice': '$60,239'}, {'Title': 'Touch of Evil', 'Year': '1958', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Orson Welles', 'Actors': 'Charlton Heston, Orson Welles, Janet Leigh', 'IMDb Rating': '8.0', 'BoxOffice': '$2,247,465'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': 'Aliens', 'Year': '1986', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'James Cameron', 'Actors': 'Sigourney Weaver, Michael Biehn, Carrie Henn', 'IMDb Rating': '8.4', 'BoxOffice': '$85,160,248'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Ran', 'Year': '1985', 'Genre': 'Action, Drama, War', 'Director': 'Akira Kurosawa', 'Actors': 'Tatsuya Nakadai, Akira Terao, Jinpachi Nezu', 'IMDb Rating': '8.2', 'BoxOffice': '$4,135,750'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Metropolis', 'Year': '1927', 'Genre': 'Drama, Sci-Fi', 'Director': 'Fritz Lang', 'Actors': 'Brigitte Helm, Alfred Abel, Gustav Fröhlich', 'IMDb Rating': '8.3', 'BoxOffice': '$1,236,166'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'Wild Strawberries', 'Year': '1957', 'Genre': 'Drama, Romance', 'Director': 'Ingmar Bergman', 'Actors': 'Victor Sjöström, Bibi Andersson, Ingrid Thulin', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Kid', 'Year': '1921', 'Genre': 'Comedy, Drama, Family', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Edna Purviance, Jackie Coogan', 'IMDb Rating': '8.2', 'BoxOffice': 'N/A'}, {'Title': 'Braveheart', 'Year': '1995', 'Genre': 'Biography, Drama, War', 'Director': 'Mel Gibson', 'Actors': 'Mel Gibson, Sophie Marceau, Patrick McGoohan', 'IMDb Rating': '8.3', 'BoxOffice': '$75,609,945'}, {'Title': 'Requiem for a Dream', 'Year': '2000', 'Genre': 'Drama', 'Director': 'Darren Aronofsky', 'Actors': 'Ellen Burstyn, Jared Leto, Jennifer Connelly', 'IMDb Rating': '8.3', 'BoxOffice': '$3,635,482'}, {'Title': 'Eternal Sunshine of the Spotless Mind', 'Year': '2004', 'Genre': 'Drama, Romance, Sci-Fi', 'Director': 'Michel Gondry', 'Actors': 'Jim Carrey, Kate Winslet, Tom Wilkinson', 'IMDb Rating': '8.3', 'BoxOffice': '$34,400,301'}, {'Title': 'Coco', 'Year': '2017', 'Genre': 'Animation, Adventure, Drama', 'Director': 'Lee Unkrich, Adrian Molina', 'Actors': 'Anthony Gonzalez, Gael García Bernal, Benjamin Bratt', 'IMDb Rating': '8.4', 'BoxOffice': '$210,460,015'}, {'Title': 'The Dark Knight Rises', 'Year': '2012', 'Genre': 'Action, Drama, Thriller', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Tom Hardy, Anne Hathaway', 'IMDb Rating': '8.4', 'BoxOffice': '$448,149,584'}, {'Title': 'A Clockwork Orange', 'Year': '1971', 'Genre': 'Crime, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Malcolm McDowell, Patrick Magee, Michael Bates', 'IMDb Rating': '8.3', 'BoxOffice': '$26,617,553'}, {'Title': '2001: A Space Odyssey', 'Year': '1968', 'Genre': 'Adventure, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Keir Dullea, Gary Lockwood, William Sylvester', 'IMDb Rating': '8.3', 'BoxOffice': '$60,481,243'}, {'Title': 'Chinatown', 'Year': '1974', 'Genre': 'Drama, Mystery, Thriller', 'Director': 'Roman Polanski', 'Actors': 'Jack Nicholson, Faye Dunaway, John Huston', 'IMDb Rating': '8.1', 'BoxOffice': '$29,200,000'}, {'Title': 'Monty Python and the Holy Grail', 'Year': '1975', 'Genre': 'Adventure, Comedy, Fantasy', 'Director': 'Terry Gilliam, Terry Jones', 'Actors': 'Graham Chapman, John Cleese, Eric Idle', 'IMDb Rating': '8.2', 'BoxOffice': '$2,562,392'}, {'Title': 'Bicycle Thieves', 'Year': '1948', 'Genre': 'Drama', 'Director': 'Vittorio De Sica', 'Actors': 'Lamberto Maggiorani, Enzo Staiola, Lianella Carell', 'IMDb Rating': '8.3', 'BoxOffice': '$371,111'}, {'Title': 'The Seventh Seal', 'Year': '1957', 'Genre': 'Drama, Fantasy', 'Director': 'Ingmar Bergman', 'Actors': 'Max von Sydow, Gunnar Björnstrand, Bengt Ekerot', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Ikiru', 'Year': '1952', 'Genre': 'Drama', 'Director': 'Akira Kurosawa', 'Actors': "Takashi Shimura, Nobuo Kaneko, Shin'ichi Himori", 'IMDb Rating': '8.3', 'BoxOffice': '$60,239'}, {'Title': 'Touch of Evil', 'Year': '1958', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Orson Welles', 'Actors': 'Charlton Heston, Orson Welles, Janet Leigh', 'IMDb Rating': '8.0', 'BoxOffice': '$2,247,465'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': 'Aliens', 'Year': '1986', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'James Cameron', 'Actors': 'Sigourney Weaver, Michael Biehn, Carrie Henn', 'IMDb Rating': '8.4', 'BoxOffice': '$85,160,248'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Ran', 'Year': '1985', 'Genre': 'Action, Drama, War', 'Director': 'Akira Kurosawa', 'Actors': 'Tatsuya Nakadai, Akira Terao, Jinpachi Nezu', 'IMDb Rating': '8.2', 'BoxOffice': '$4,135,750'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Metropolis', 'Year': '1927', 'Genre': 'Drama, Sci-Fi', 'Director': 'Fritz Lang', 'Actors': 'Brigitte Helm, Alfred Abel, Gustav Fröhlich', 'IMDb Rating': '8.3', 'BoxOffice': '$1,236,166'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'Wild Strawberries', 'Year': '1957', 'Genre': 'Drama, Romance', 'Director': 'Ingmar Bergman', 'Actors': 'Victor Sjöström, Bibi Andersson, Ingrid Thulin', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Kid', 'Year': '1921', 'Genre': 'Comedy, Drama, Family', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Edna Purviance, Jackie Coogan', 'IMDb Rating': '8.2', 'BoxOffice': 'N/A'},{'Title': 'The Shawshank Redemption', 'Year': '1994', 'Genre': 'Drama', 'Director': 'Frank Darabont', 'Actors': 'Tim Robbins, Morgan Freeman, Bob Gunton', 'IMDb Rating': '9.3', 'BoxOffice': '$28,767,189'}, {'Title': 'The Godfather', 'Year': '1972', 'Genre': 'Crime, Drama', 'Director': 'Francis Ford Coppola', 'Actors': 'Marlon Brando, Al Pacino, James Caan', 'IMDb Rating': '9.2', 'BoxOffice': '$136,381,073'}, {'Title': 'The Godfather Part II', 'Year': '1974', 'Genre': 'Crime, Drama', 'Director': 'Francis Ford Coppola', 'Actors': 'Al Pacino, Robert De Niro, Robert Duvall', 'IMDb Rating': '9.0', 'BoxOffice': '$47,834,595'}, {'Title': 'The Dark Knight', 'Year': '2008', 'Genre': 'Action, Crime, Drama', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Heath Ledger, Aaron Eckhart', 'IMDb Rating': '9.0', 'BoxOffice': '$534,987,076'}, {'Title': '12 Angry Men', 'Year': '1957', 'Genre': 'Crime, Drama', 'Director': 'Sidney Lumet', 'Actors': 'Henry Fonda, Lee J. Cobb, Martin Balsam', 'IMDb Rating': '9.0', 'BoxOffice': 'N/A'}, {'Title': "Schindler's List", 'Year': '1993', 'Genre': 'Biography, Drama, History', 'Director': 'Steven Spielberg', 'Actors': 'Liam Neeson, Ralph Fiennes, Ben Kingsley', 'IMDb Rating': '9.0', 'BoxOffice': '$96,898,818'}, {'Title': 'The Lord of the Rings: The Return of the King', 'Year': '2003', 'Genre': 'Action, Adventure, Drama', 'Director': 'Peter Jackson', 'Actors': 'Elijah Wood, Viggo Mortensen, Ian McKellen', 'IMDb Rating': '9.0', 'BoxOffice': '$379,427,292'}, {'Title': 'Pulp Fiction', 'Year': '1994', 'Genre': 'Crime, Drama', 'Director': 'Quentin Tarantino', 'Actors': 'John Travolta, Uma Thurman, Samuel L. Jackson', 'IMDb Rating': '8.9', 'BoxOffice': '$107,928,762'}, {'Title': 'The Good, the Bad and the Ugly', 'Year': '1966', 'Genre': 'Adventure, Western', 'Director': 'Sergio Leone', 'Actors': 'Clint Eastwood, Eli Wallach, Lee Van Cleef', 'IMDb Rating': '8.8', 'BoxOffice': '$25,100,000'}, {'Title': 'Fight Club', 'Year': '1999', 'Genre': 'Drama', 'Director': 'David Fincher', 'Actors': 'Brad Pitt, Edward Norton, Meat Loaf', 'IMDb Rating': '8.8', 'BoxOffice': '$37,030,102'}, {'Title': 'The Lord of the Rings: The Fellowship of the Ring', 'Year': '2001', 'Genre': 'Action, Adventure, Drama', 'Director': 'Peter Jackson', 'Actors': 'Elijah Wood, Ian McKellen, Orlando Bloom', 'IMDb Rating': '8.9', 'BoxOffice': '$316,115,420'}, {'Title': 'Star Wars: Episode V - The Empire Strikes Back', 'Year': '1980', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Irvin Kershner', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.7', 'BoxOffice': '$292,753,960'}, {'Title': 'Forrest Gump', 'Year': '1994', 'Genre': 'Drama, Romance', 'Director': 'Robert Zemeckis', 'Actors': 'Tom Hanks, Robin Wright, Gary Sinise', 'IMDb Rating': '8.8', 'BoxOffice': '$330,455,270'}, {'Title': 'Inception', 'Year': '2010', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'Christopher Nolan', 'Actors': 'Leonardo DiCaprio, Joseph Gordon-Levitt, Elliot Page', 'IMDb Rating': '8.8', 'BoxOffice': '$292,587,330'}, {'Title': 'The Lord of the Rings: The Two Towers', 'Year': '2002', 'Genre': 'Action, Adventure, Drama', 'Director': 'Peter Jackson', 'Actors': 'Elijah Wood, Ian McKellen, Viggo Mortensen', 'IMDb Rating': '8.8', 'BoxOffice': '$342,952,511'}, {'Title': "One Flew Over the Cuckoo's Nest", 'Year': '1975', 'Genre': 'Drama', 'Director': 'Milos Forman', 'Actors': 'Jack Nicholson, Louise Fletcher, Michael Berryman', 'IMDb Rating': '8.7', 'BoxOffice': '$108,981,275'}, {'Title': 'Goodfellas', 'Year': '1990', 'Genre': 'Biography, Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Ray Liotta, Joe Pesci', 'IMDb Rating': '8.7', 'BoxOffice': '$46,909,721'}, {'Title': 'The Matrix', 'Year': '1999', 'Genre': 'Action, Sci-Fi', 'Director': 'Lana Wachowski, Lilly Wachowski', 'Actors': 'Keanu Reeves, Laurence Fishburne, Carrie-Anne Moss', 'IMDb Rating': '8.7', 'BoxOffice': '$172,076,928'}, {'Title': 'Seven Samurai', 'Year': '1954', 'Genre': 'Action, Drama', 'Director': 'Akira Kurosawa', 'Actors': 'Toshirô Mifune, Takashi Shimura, Keiko Tsushima', 'IMDb Rating': '8.6', 'BoxOffice': '$318,649'}, {'Title': 'Star Wars: Episode IV - A New Hope', 'Year': '1977', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'George Lucas', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.6', 'BoxOffice': '$460,998,507'}, {'Title': 'City of God', 'Year': '2002', 'Genre': 'Crime, Drama', 'Director': 'Fernando Meirelles, Kátia Lund', 'Actors': 'Alexandre Rodrigues, Leandro Firmino, Matheus Nachtergaele', 'IMDb Rating': '8.6', 'BoxOffice': '$7,564,459'}, {'Title': 'Se7en', 'Year': '1995', 'Genre': 'Crime, Drama, Mystery', 'Director': 'David Fincher', 'Actors': 'Morgan Freeman, Brad Pitt, Kevin Spacey', 'IMDb Rating': '8.6', 'BoxOffice': '$100,125,643'}, {'Title': 'The Silence of the Lambs', 'Year': '1991', 'Genre': 'Crime, Drama, Thriller', 'Director': 'Jonathan Demme', 'Actors': 'Jodie Foster, Anthony Hopkins, Scott Glenn', 'IMDb Rating': '8.6', 'BoxOffice': '$130,742,922'}, {'Title': "It's a Wonderful Life", 'Year': '1946', 'Genre': 'Drama, Family, Fantasy', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Donna Reed, Lionel Barrymore', 'IMDb Rating': '8.6', 'BoxOffice': '$1,483,643'}, {'Title': 'The Usual Suspects', 'Year': '1995', 'Genre': 'Crime, Drama, Mystery', 'Director': 'Bryan Singer', 'Actors': 'Kevin Spacey, Gabriel Byrne, Chazz Palminteri', 'IMDb Rating': '8.5', 'BoxOffice': '$23,341,568'}, {'Title': 'Life Is Beautiful', 'Year': '1997', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Roberto Benigni', 'Actors': 'Roberto Benigni, Nicoletta Braschi, Giorgio Cantarini', 'IMDb Rating': '8.6', 'BoxOffice': '$57,563,264'}, {'Title': 'Léon: The Professional', 'Year': '1994', 'Genre': 'Action, Crime, Drama', 'Director': 'Luc Besson', 'Actors': 'Jean Reno, Gary Oldman, Natalie Portman', 'IMDb Rating': '8.5', 'BoxOffice': '$19,501,238'}, {'Title': 'Spirited Away', 'Year': '2001', 'Genre': 'Animation, Adventure, Family', 'Director': 'Hayao Miyazaki', 'Actors': 'Daveigh Chase, Suzanne Pleshette, Miyu Irino', 'IMDb Rating': '8.6', 'BoxOffice': '$15,205,725'}, {'Title': 'Saving Private Ryan', 'Year': '1998', 'Genre': 'Drama, War', 'Director': 'Steven Spielberg', 'Actors': 'Tom Hanks, Matt Damon, Tom Sizemore', 'IMDb Rating': '8.6', 'BoxOffice': '$217,049,603'}, {'Title': 'The Green Mile', 'Year': '1999', 'Genre': 'Crime, Drama, Fantasy', 'Director': 'Frank Darabont', 'Actors': 'Tom Hanks, Michael Clarke Duncan, David Morse', 'IMDb Rating': '8.6', 'BoxOffice': '$136,801,374'}, {'Title': 'Interstellar', 'Year': '2014', 'Genre': 'Adventure, Drama, Sci-Fi', 'Director': 'Christopher Nolan', 'Actors': 'Matthew McConaughey, Anne Hathaway, Jessica Chastain', 'IMDb Rating': '8.7', 'BoxOffice': '$188,020,017'}, {'Title': 'Psycho', 'Year': '1960', 'Genre': 'Horror, Mystery, Thriller', 'Director': 'Alfred Hitchcock', 'Actors': 'Anthony Perkins, Janet Leigh, Vera Miles', 'IMDb Rating': '8.5', 'BoxOffice': '$32,000,000'}, {'Title': 'American History X', 'Year': '1998', 'Genre': 'Crime, Drama', 'Director': 'Tony Kaye', 'Actors': "Edward Norton, Edward Furlong, Beverly D'Angelo", 'IMDb Rating': '8.5', 'BoxOffice': '$6,719,864'}, {'Title': 'City Lights', 'Year': '1931', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Virginia Cherrill, Florence Lee', 'IMDb Rating': '8.5', 'BoxOffice': '$19,181'}, {'Title': 'Casablanca', 'Year': '1942', 'Genre': 'Drama, Romance, War', 'Director': 'Michael Curtiz', 'Actors': 'Humphrey Bogart, Ingrid Bergman, Paul Henreid', 'IMDb Rating': '8.5', 'BoxOffice': '$4,219,709'}, {'Title': 'The Pianist', 'Year': '2002', 'Genre': 'Biography, Drama, Music', 'Director': 'Roman Polanski', 'Actors': 'Adrien Brody, Thomas Kretschmann, Frank Finlay', 'IMDb Rating': '8.5', 'BoxOffice': '$32,588,440'}, {'Title': 'Gladiator', 'Year': '2000', 'Genre': 'Action, Adventure, Drama', 'Director': 'Ridley Scott', 'Actors': 'Russell Crowe, Joaquin Phoenix, Connie Nielsen', 'IMDb Rating': '8.5', 'BoxOffice': '$187,705,427'}, {'Title': 'Modern Times', 'Year': '1936', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Paulette Goddard, Henry Bergman', 'IMDb Rating': '8.5', 'BoxOffice': '$163,577'}, {'Title': 'The Intouchables', 'Year': '2011', 'Genre': 'Comedy, Drama', 'Director': 'Olivier Nakache, Éric Toledano', 'Actors': 'François Cluzet, Omar Sy, Anne Le Ny', 'IMDb Rating': '8.5', 'BoxOffice': '$10,198,820'}, {'Title': 'The Departed', 'Year': '2006', 'Genre': 'Crime, Drama, Thriller', 'Director': 'Martin Scorsese', 'Actors': 'Leonardo DiCaprio, Matt Damon, Jack Nicholson', 'IMDb Rating': '8.5', 'BoxOffice': '$132,399,394'}, {'Title': 'Whiplash', 'Year': '2014', 'Genre': 'Drama, Music', 'Director': 'Damien Chazelle', 'Actors': 'Miles Teller, J.K. Simmons, Melissa Benoist', 'IMDb Rating': '8.5', 'BoxOffice': '$13,092,000'}, {'Title': 'The Prestige', 'Year': '2006', 'Genre': 'Drama, Mystery, Sci-Fi', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Hugh Jackman, Scarlett Johansson', 'IMDb Rating': '8.5', 'BoxOffice': '$53,089,891'}]



# 데이터프레임 생성
df = pd.DataFrame(data)

# 박스 오피스 수익에서 '$'와 ',' 제거 및 'N/A' 처리
df['BoxOffice'] = df['BoxOffice'].replace({'\$': '', ',': '', 'N/A': None}, regex=True)


# 박스 오피스 수익을 float 타입으로 변환
df['BoxOffice'] = pd.to_numeric(df['BoxOffice'], errors='coerce')

# IMDb 평점을 float 타입으로 변환
df['IMDb Rating'] = pd.to_numeric(df['IMDb Rating'], errors='coerce')

df = df[df['BoxOffice'] >= 1000000] #결측치 제거
# 기초 통계량 및 상관 계수 출력
print(df.describe())
correlation = df['IMDb Rating'].corr(df['BoxOffice'])
print(f"Correlation between IMDb Rating and Box Office Revenue: {correlation}")

# 데이터 시각화
plt.figure(figsize=(10, 6))
sns.scatterplot(x='IMDb Rating', y='BoxOffice', data=df)
plt.title('Relationship Between IMDb Rating and Box Office Revenue')
plt.xlabel('IMDb Rating')
plt.ylabel('Box Office Revenue (in $)')
plt.grid(True)
plt.show()

       IMDb Rating     BoxOffice
count   188.000000  1.880000e+02
mean      8.360638  8.333479e+07
std       0.214311  1.184387e+08
min       8.000000  1.236166e+06
25%       8.300000  5.321508e+06
50%       8.300000  3.291449e+07
75%       8.400000  8.516025e+07
max       9.300000  5.349871e+08
Correlation between IMDb Rating and Box Office Revenue: 0.3899940768975571

png

import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns

# 예시 데이터 리스트 (실제 데이터로 채워야 함)
movies_data = [
   {'Title': 'Reservoir Dogs', 'Year': '1992', 'Genre': 'Crime, Thriller', 'Director': 'Quentin Tarantino', 'Actors': 'Harvey Keitel, Tim Roth, Michael Madsen', 'IMDb Rating': '8.3', 'BoxOffice': '$2,832,029'}, {'Title': 'The Hunt', 'Year': '2012', 'Genre': 'Drama', 'Director': 'Thomas Vinterberg', 'Actors': 'Mads Mikkelsen, Thomas Bo Larsen, Annika Wedderkopp', 'IMDb Rating': '8.3', 'BoxOffice': '$613,308'}, {'Title': 'All About Eve', 'Year': '1950', 'Genre': 'Drama', 'Director': 'Joseph L. Mankiewicz', 'Actors': 'Bette Davis, Anne Baxter, George Sanders', 'IMDb Rating': '8.2', 'BoxOffice': '$63,463'}, {'Title': 'Monty Python and the Holy Grail', 'Year': '1975', 'Genre': 'Adventure, Comedy, Fantasy', 'Director': 'Terry Gilliam, Terry Jones', 'Actors': 'Graham Chapman, John Cleese, Eric Idle', 'IMDb Rating': '8.2', 'BoxOffice': '$2,562,392'}, {'Title': 'Chinatown', 'Year': '1974', 'Genre': 'Drama, Mystery, Thriller', 'Director': 'Roman Polanski', 'Actors': 'Jack Nicholson, Faye Dunaway, John Huston', 'IMDb Rating': '8.1', 'BoxOffice': '$29,200,000'}, {'Title': 'Wild Strawberries', 'Year': '1957', 'Genre': 'Drama, Romance', 'Director': 'Ingmar Bergman', 'Actors': 'Victor Sjöström, Bibi Andersson, Ingrid Thulin', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'The Kid', 'Year': '1921', 'Genre': 'Comedy, Drama, Family', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Edna Purviance, Jackie Coogan', 'IMDb Rating': '8.2', 'BoxOffice': 'N/A'}, {'Title': 'Touch of Evil', 'Year': '1958', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Orson Welles', 'Actors': 'Charlton Heston, Orson Welles, Janet Leigh', 'IMDb Rating': '8.0', 'BoxOffice': '$2,247,465'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'A Clockwork Orange', 'Year': '1971', 'Genre': 'Crime, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Malcolm McDowell, Patrick Magee, Michael Bates', 'IMDb Rating': '8.3', 'BoxOffice': '$26,617,553'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': '2001: A Space Odyssey', 'Year': '1968', 'Genre': 'Adventure, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Keir Dullea, Gary Lockwood, William Sylvester', 'IMDb Rating': '8.3', 'BoxOffice': '$60,481,243'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'Citizen Kane', 'Year': '1941', 'Genre': 'Drama, Mystery', 'Director': 'Orson Welles', 'Actors': 'Orson Welles, Joseph Cotten, Dorothy Comingore', 'IMDb Rating': '8.3', 'BoxOffice': '$1,627,530'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'Bicycle Thieves', 'Year': '1948', 'Genre': 'Drama', 'Director': 'Vittorio De Sica', 'Actors': 'Lamberto Maggiorani, Enzo Staiola, Lianella Carell', 'IMDb Rating': '8.3', 'BoxOffice': '$371,111'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': 'For a Few Dollars More', 'Year': '1965', 'Genre': 'Drama, Western', 'Director': 'Sergio Leone', 'Actors': 'Clint Eastwood, Lee Van Cleef, Gian Maria Volontè', 'IMDb Rating': '8.2', 'BoxOffice': '$15,000,000'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': 'Eternal Sunshine of the Spotless Mind', 'Year': '2004', 'Genre': 'Drama, Romance, Sci-Fi', 'Director': 'Michel Gondry', 'Actors': 'Jim Carrey, Kate Winslet, Tom Wilkinson', 'IMDb Rating': '8.3', 'BoxOffice': '$34,400,301'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Metropolis', 'Year': '1927', 'Genre': 'Drama, Sci-Fi', 'Director': 'Fritz Lang', 'Actors': 'Brigitte Helm, Alfred Abel, Gustav Fröhlich', 'IMDb Rating': '8.3', 'BoxOffice': '$1,236,166'}, {'Title': 'Ran', 'Year': '1985', 'Genre': 'Action, Drama, War', 'Director': 'Akira Kurosawa', 'Actors': 'Tatsuya Nakadai, Akira Terao, Jinpachi Nezu', 'IMDb Rating': '8.2', 'BoxOffice': '$4,135,750'}, {'Title': 'The Seventh Seal', 'Year': '1957', 'Genre': 'Drama, Fantasy', 'Director': 'Ingmar Bergman', 'Actors': 'Max von Sydow, Gunnar Björnstrand, Bengt Ekerot', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Coco', 'Year': '2017', 'Genre': 'Animation, Adventure, Drama', 'Director': 'Lee Unkrich, Adrian Molina', 'Actors': 'Anthony Gonzalez, Gael García Bernal, Benjamin Bratt', 'IMDb Rating': '8.4', 'BoxOffice': '$210,460,015'}, {'Title': 'The Dark Knight Rises', 'Year': '2012', 'Genre': 'Action, Drama, Thriller', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Tom Hardy, Anne Hathaway', 'IMDb Rating': '8.4', 'BoxOffice': '$448,149,584'}, {'Title': 'Braveheart', 'Year': '1995', 'Genre': 'Biography, Drama, War', 'Director': 'Mel Gibson', 'Actors': 'Mel Gibson, Sophie Marceau, Patrick McGoohan', 'IMDb Rating': '8.3', 'BoxOffice': '$75,609,945'}, {'Title': 'Requiem for a Dream', 'Year': '2000', 'Genre': 'Drama', 'Director': 'Darren Aronofsky', 'Actors': 'Ellen Burstyn, Jared Leto, Jennifer Connelly', 'IMDb Rating': '8.3', 'BoxOffice': '$3,635,482'}, {'Title': 'Ikiru', 'Year': '1952', 'Genre': 'Drama', 'Director': 'Akira Kurosawa', 'Actors': "Takashi Shimura, Nobuo Kaneko, Shin'ichi Himori", 'IMDb Rating': '8.3', 'BoxOffice': '$60,239'}, {'Title': 'Aliens', 'Year': '1986', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'James Cameron', 'Actors': 'Sigourney Weaver, Michael Biehn, Carrie Henn', 'IMDb Rating': '8.4', 'BoxOffice': '$85,160,248'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'All About Eve', 'Year': '1950', 'Genre': 'Drama', 'Director': 'Joseph L. Mankiewicz', 'Actors': 'Bette Davis, Anne Baxter, George Sanders', 'IMDb Rating': '8.2', 'BoxOffice': '$63,463'}, {'Title': 'The Kid', 'Year': '1921', 'Genre': 'Comedy, Drama, Family', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Edna Purviance, Jackie Coogan', 'IMDb Rating': '8.2', 'BoxOffice': 'N/A'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': 'Monty Python and the Holy Grail', 'Year': '1975', 'Genre': 'Adventure, Comedy, Fantasy', 'Director': 'Terry Gilliam, Terry Jones', 'Actors': 'Graham Chapman, John Cleese, Eric Idle', 'IMDb Rating': '8.2', 'BoxOffice': '$2,562,392'}, {'Title': 'Wild Strawberries', 'Year': '1957', 'Genre': 'Drama, Romance', 'Director': 'Ingmar Bergman', 'Actors': 'Victor Sjöström, Bibi Andersson, Ingrid Thulin', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'Citizen Kane', 'Year': '1941', 'Genre': 'Drama, Mystery', 'Director': 'Orson Welles', 'Actors': 'Orson Welles, Joseph Cotten, Dorothy Comingore', 'IMDb Rating': '8.3', 'BoxOffice': '$1,627,530'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'Aliens', 'Year': '1986', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'James Cameron', 'Actors': 'Sigourney Weaver, Michael Biehn, Carrie Henn', 'IMDb Rating': '8.4', 'BoxOffice': '$85,160,248'}, {'Title': 'Reservoir Dogs', 'Year': '1992', 'Genre': 'Crime, Thriller', 'Director': 'Quentin Tarantino', 'Actors': 'Harvey Keitel, Tim Roth, Michael Madsen', 'IMDb Rating': '8.3', 'BoxOffice': '$2,832,029'}, {'Title': 'Braveheart', 'Year': '1995', 'Genre': 'Biography, Drama, War', 'Director': 'Mel Gibson', 'Actors': 'Mel Gibson, Sophie Marceau, Patrick McGoohan', 'IMDb Rating': '8.3', 'BoxOffice': '$75,609,945'}, {'Title': 'Requiem for a Dream', 'Year': '2000', 'Genre': 'Drama', 'Director': 'Darren Aronofsky', 'Actors': 'Ellen Burstyn, Jared Leto, Jennifer Connelly', 'IMDb Rating': '8.3', 'BoxOffice': '$3,635,482'}, {'Title': 'Eternal Sunshine of the Spotless Mind', 'Year': '2004', 'Genre': 'Drama, Romance, Sci-Fi', 'Director': 'Michel Gondry', 'Actors': 'Jim Carrey, Kate Winslet, Tom Wilkinson', 'IMDb Rating': '8.3', 'BoxOffice': '$34,400,301'}, {'Title': 'The Dark Knight Rises', 'Year': '2012', 'Genre': 'Action, Drama, Thriller', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Tom Hardy, Anne Hathaway', 'IMDb Rating': '8.4', 'BoxOffice': '$448,149,584'}, {'Title': 'Coco', 'Year': '2017', 'Genre': 'Animation, Adventure, Drama', 'Director': 'Lee Unkrich, Adrian Molina', 'Actors': 'Anthony Gonzalez, Gael García Bernal, Benjamin Bratt', 'IMDb Rating': '8.4', 'BoxOffice': '$210,460,015'}, {'Title': 'The Hunt', 'Year': '2012', 'Genre': 'Drama', 'Director': 'Thomas Vinterberg', 'Actors': 'Mads Mikkelsen, Thomas Bo Larsen, Annika Wedderkopp', 'IMDb Rating': '8.3', 'BoxOffice': '$613,308'}, {'Title': 'A Clockwork Orange', 'Year': '1971', 'Genre': 'Crime, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Malcolm McDowell, Patrick Magee, Michael Bates', 'IMDb Rating': '8.3', 'BoxOffice': '$26,617,553'}, {'Title': '2001: A Space Odyssey', 'Year': '1968', 'Genre': 'Adventure, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Keir Dullea, Gary Lockwood, William Sylvester', 'IMDb Rating': '8.3', 'BoxOffice': '$60,481,243'}, {'Title': 'Ikiru', 'Year': '1952', 'Genre': 'Drama', 'Director': 'Akira Kurosawa', 'Actors': "Takashi Shimura, Nobuo Kaneko, Shin'ichi Himori", 'IMDb Rating': '8.3', 'BoxOffice': '$60,239'}, {'Title': 'The Seventh Seal', 'Year': '1957', 'Genre': 'Drama, Fantasy', 'Director': 'Ingmar Bergman', 'Actors': 'Max von Sydow, Gunnar Björnstrand, Bengt Ekerot', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': 'For a Few Dollars More', 'Year': '1965', 'Genre': 'Drama, Western', 'Director': 'Sergio Leone', 'Actors': 'Clint Eastwood, Lee Van Cleef, Gian Maria Volontè', 'IMDb Rating': '8.2', 'BoxOffice': '$15,000,000'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'All About Eve', 'Year': '1950', 'Genre': 'Drama', 'Director': 'Joseph L. Mankiewicz', 'Actors': 'Bette Davis, Anne Baxter, George Sanders', 'IMDb Rating': '8.2', 'BoxOffice': '$63,463'}, {'Title': 'Metropolis', 'Year': '1927', 'Genre': 'Drama, Sci-Fi', 'Director': 'Fritz Lang', 'Actors': 'Brigitte Helm, Alfred Abel, Gustav Fröhlich', 'IMDb Rating': '8.3', 'BoxOffice': '$1,236,166'}, {'Title': 'Ran', 'Year': '1985', 'Genre': 'Action, Drama, War', 'Director': 'Akira Kurosawa', 'Actors': 'Tatsuya Nakadai, Akira Terao, Jinpachi Nezu', 'IMDb Rating': '8.2', 'BoxOffice': '$4,135,750'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'Touch of Evil', 'Year': '1958', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Orson Welles', 'Actors': 'Charlton Heston, Orson Welles, Janet Leigh', 'IMDb Rating': '8.0', 'BoxOffice': '$2,247,465'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': 'All About Eve', 'Year': '1950', 'Genre': 'Drama', 'Director': 'Joseph L. Mankiewicz', 'Actors': 'Bette Davis, Anne Baxter, George Sanders', 'IMDb Rating': '8.2', 'BoxOffice': '$63,463'}, {'Title': 'Citizen Kane', 'Year': '1941', 'Genre': 'Drama, Mystery', 'Director': 'Orson Welles', 'Actors': 'Orson Welles, Joseph Cotten, Dorothy Comingore', 'IMDb Rating': '8.3', 'BoxOffice': '$1,627,530'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'Aliens', 'Year': '1986', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'James Cameron', 'Actors': 'Sigourney Weaver, Michael Biehn, Carrie Henn', 'IMDb Rating': '8.4', 'BoxOffice': '$85,160,248'}, {'Title': 'Reservoir Dogs', 'Year': '1992', 'Genre': 'Crime, Thriller', 'Director': 'Quentin Tarantino', 'Actors': 'Harvey Keitel, Tim Roth, Michael Madsen', 'IMDb Rating': '8.3', 'BoxOffice': '$2,832,029'}, {'Title': 'Braveheart', 'Year': '1995', 'Genre': 'Biography, Drama, War', 'Director': 'Mel Gibson', 'Actors': 'Mel Gibson, Sophie Marceau, Patrick McGoohan', 'IMDb Rating': '8.3', 'BoxOffice': '$75,609,945'}, {'Title': 'Requiem for a Dream', 'Year': '2000', 'Genre': 'Drama', 'Director': 'Darren Aronofsky', 'Actors': 'Ellen Burstyn, Jared Leto, Jennifer Connelly', 'IMDb Rating': '8.3', 'BoxOffice': '$3,635,482'}, {'Title': 'Eternal Sunshine of the Spotless Mind', 'Year': '2004', 'Genre': 'Drama, Romance, Sci-Fi', 'Director': 'Michel Gondry', 'Actors': 'Jim Carrey, Kate Winslet, Tom Wilkinson', 'IMDb Rating': '8.3', 'BoxOffice': '$34,400,301'}, {'Title': 'The Dark Knight Rises', 'Year': '2012', 'Genre': 'Action, Drama, Thriller', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Tom Hardy, Anne Hathaway', 'IMDb Rating': '8.4', 'BoxOffice': '$448,149,584'}, {'Title': 'Coco', 'Year': '2017', 'Genre': 'Animation, Adventure, Drama', 'Director': 'Lee Unkrich, Adrian Molina', 'Actors': 'Anthony Gonzalez, Gael García Bernal, Benjamin Bratt', 'IMDb Rating': '8.4', 'BoxOffice': '$210,460,015'}, {'Title': 'The Hunt', 'Year': '2012', 'Genre': 'Drama', 'Director': 'Thomas Vinterberg', 'Actors': 'Mads Mikkelsen, Thomas Bo Larsen, Annika Wedderkopp', 'IMDb Rating': '8.3', 'BoxOffice': '$613,308'}, {'Title': 'A Clockwork Orange', 'Year': '1971', 'Genre': 'Crime, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Malcolm McDowell, Patrick Magee, Michael Bates', 'IMDb Rating': '8.3', 'BoxOffice': '$26,617,553'}, {'Title': '2001: A Space Odyssey', 'Year': '1968', 'Genre': 'Adventure, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Keir Dullea, Gary Lockwood, William Sylvester', 'IMDb Rating': '8.3', 'BoxOffice': '$60,481,243'}, {'Title': 'Chinatown', 'Year': '1974', 'Genre': 'Drama, Mystery, Thriller', 'Director': 'Roman Polanski', 'Actors': 'Jack Nicholson, Faye Dunaway, John Huston', 'IMDb Rating': '8.1', 'BoxOffice': '$29,200,000'}, {'Title': 'Monty Python and the Holy Grail', 'Year': '1975', 'Genre': 'Adventure, Comedy, Fantasy', 'Director': 'Terry Gilliam, Terry Jones', 'Actors': 'Graham Chapman, John Cleese, Eric Idle', 'IMDb Rating': '8.2', 'BoxOffice': '$2,562,392'}, {'Title': 'For a Few Dollars More', 'Year': '1965', 'Genre': 'Drama, Western', 'Director': 'Sergio Leone', 'Actors': 'Clint Eastwood, Lee Van Cleef, Gian Maria Volontè', 'IMDb Rating': '8.2', 'BoxOffice': '$15,000,000'}, {'Title': 'The Seventh Seal', 'Year': '1957', 'Genre': 'Drama, Fantasy', 'Director': 'Ingmar Bergman', 'Actors': 'Max von Sydow, Gunnar Björnstrand, Bengt Ekerot', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Ikiru', 'Year': '1952', 'Genre': 'Drama', 'Director': 'Akira Kurosawa', 'Actors': "Takashi Shimura, Nobuo Kaneko, Shin'ichi Himori", 'IMDb Rating': '8.3', 'BoxOffice': '$60,239'}, {'Title': 'Touch of Evil', 'Year': '1958', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Orson Welles', 'Actors': 'Charlton Heston, Orson Welles, Janet Leigh', 'IMDb Rating': '8.0', 'BoxOffice': '$2,247,465'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': 'Bicycle Thieves', 'Year': '1948', 'Genre': 'Drama', 'Director': 'Vittorio De Sica', 'Actors': 'Lamberto Maggiorani, Enzo Staiola, Lianella Carell', 'IMDb Rating': '8.3', 'BoxOffice': '$371,111'}, {'Title': 'Citizen Kane', 'Year': '1941', 'Genre': 'Drama, Mystery', 'Director': 'Orson Welles', 'Actors': 'Orson Welles, Joseph Cotten, Dorothy Comingore', 'IMDb Rating': '8.3', 'BoxOffice': '$1,627,530'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Ran', 'Year': '1985', 'Genre': 'Action, Drama, War', 'Director': 'Akira Kurosawa', 'Actors': 'Tatsuya Nakadai, Akira Terao, Jinpachi Nezu', 'IMDb Rating': '8.2', 'BoxOffice': '$4,135,750'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Metropolis', 'Year': '1927', 'Genre': 'Drama, Sci-Fi', 'Director': 'Fritz Lang', 'Actors': 'Brigitte Helm, Alfred Abel, Gustav Fröhlich', 'IMDb Rating': '8.3', 'BoxOffice': '$1,236,166'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'Wild Strawberries', 'Year': '1957', 'Genre': 'Drama, Romance', 'Director': 'Ingmar Bergman', 'Actors': 'Victor Sjöström, Bibi Andersson, Ingrid Thulin', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Kid', 'Year': '1921', 'Genre': 'Comedy, Drama, Family', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Edna Purviance, Jackie Coogan', 'IMDb Rating': '8.2', 'BoxOffice': 'N/A'}, {'Title': 'Braveheart', 'Year': '1995', 'Genre': 'Biography, Drama, War', 'Director': 'Mel Gibson', 'Actors': 'Mel Gibson, Sophie Marceau, Patrick McGoohan', 'IMDb Rating': '8.3', 'BoxOffice': '$75,609,945'}, {'Title': 'Requiem for a Dream', 'Year': '2000', 'Genre': 'Drama', 'Director': 'Darren Aronofsky', 'Actors': 'Ellen Burstyn, Jared Leto, Jennifer Connelly', 'IMDb Rating': '8.3', 'BoxOffice': '$3,635,482'}, {'Title': 'Eternal Sunshine of the Spotless Mind', 'Year': '2004', 'Genre': 'Drama, Romance, Sci-Fi', 'Director': 'Michel Gondry', 'Actors': 'Jim Carrey, Kate Winslet, Tom Wilkinson', 'IMDb Rating': '8.3', 'BoxOffice': '$34,400,301'}, {'Title': 'Coco', 'Year': '2017', 'Genre': 'Animation, Adventure, Drama', 'Director': 'Lee Unkrich, Adrian Molina', 'Actors': 'Anthony Gonzalez, Gael García Bernal, Benjamin Bratt', 'IMDb Rating': '8.4', 'BoxOffice': '$210,460,015'}, {'Title': 'The Dark Knight Rises', 'Year': '2012', 'Genre': 'Action, Drama, Thriller', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Tom Hardy, Anne Hathaway', 'IMDb Rating': '8.4', 'BoxOffice': '$448,149,584'}, {'Title': 'A Clockwork Orange', 'Year': '1971', 'Genre': 'Crime, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Malcolm McDowell, Patrick Magee, Michael Bates', 'IMDb Rating': '8.3', 'BoxOffice': '$26,617,553'}, {'Title': '2001: A Space Odyssey', 'Year': '1968', 'Genre': 'Adventure, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Keir Dullea, Gary Lockwood, William Sylvester', 'IMDb Rating': '8.3', 'BoxOffice': '$60,481,243'}, {'Title': 'Chinatown', 'Year': '1974', 'Genre': 'Drama, Mystery, Thriller', 'Director': 'Roman Polanski', 'Actors': 'Jack Nicholson, Faye Dunaway, John Huston', 'IMDb Rating': '8.1', 'BoxOffice': '$29,200,000'}, {'Title': 'Monty Python and the Holy Grail', 'Year': '1975', 'Genre': 'Adventure, Comedy, Fantasy', 'Director': 'Terry Gilliam, Terry Jones', 'Actors': 'Graham Chapman, John Cleese, Eric Idle', 'IMDb Rating': '8.2', 'BoxOffice': '$2,562,392'}, {'Title': 'Bicycle Thieves', 'Year': '1948', 'Genre': 'Drama', 'Director': 'Vittorio De Sica', 'Actors': 'Lamberto Maggiorani, Enzo Staiola, Lianella Carell', 'IMDb Rating': '8.3', 'BoxOffice': '$371,111'}, {'Title': 'The Seventh Seal', 'Year': '1957', 'Genre': 'Drama, Fantasy', 'Director': 'Ingmar Bergman', 'Actors': 'Max von Sydow, Gunnar Björnstrand, Bengt Ekerot', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Ikiru', 'Year': '1952', 'Genre': 'Drama', 'Director': 'Akira Kurosawa', 'Actors': "Takashi Shimura, Nobuo Kaneko, Shin'ichi Himori", 'IMDb Rating': '8.3', 'BoxOffice': '$60,239'}, {'Title': 'Touch of Evil', 'Year': '1958', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Orson Welles', 'Actors': 'Charlton Heston, Orson Welles, Janet Leigh', 'IMDb Rating': '8.0', 'BoxOffice': '$2,247,465'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': 'Aliens', 'Year': '1986', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'James Cameron', 'Actors': 'Sigourney Weaver, Michael Biehn, Carrie Henn', 'IMDb Rating': '8.4', 'BoxOffice': '$85,160,248'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Ran', 'Year': '1985', 'Genre': 'Action, Drama, War', 'Director': 'Akira Kurosawa', 'Actors': 'Tatsuya Nakadai, Akira Terao, Jinpachi Nezu', 'IMDb Rating': '8.2', 'BoxOffice': '$4,135,750'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Metropolis', 'Year': '1927', 'Genre': 'Drama, Sci-Fi', 'Director': 'Fritz Lang', 'Actors': 'Brigitte Helm, Alfred Abel, Gustav Fröhlich', 'IMDb Rating': '8.3', 'BoxOffice': '$1,236,166'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'Wild Strawberries', 'Year': '1957', 'Genre': 'Drama, Romance', 'Director': 'Ingmar Bergman', 'Actors': 'Victor Sjöström, Bibi Andersson, Ingrid Thulin', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Kid', 'Year': '1921', 'Genre': 'Comedy, Drama, Family', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Edna Purviance, Jackie Coogan', 'IMDb Rating': '8.2', 'BoxOffice': 'N/A'}, {'Title': 'Braveheart', 'Year': '1995', 'Genre': 'Biography, Drama, War', 'Director': 'Mel Gibson', 'Actors': 'Mel Gibson, Sophie Marceau, Patrick McGoohan', 'IMDb Rating': '8.3', 'BoxOffice': '$75,609,945'}, {'Title': 'Requiem for a Dream', 'Year': '2000', 'Genre': 'Drama', 'Director': 'Darren Aronofsky', 'Actors': 'Ellen Burstyn, Jared Leto, Jennifer Connelly', 'IMDb Rating': '8.3', 'BoxOffice': '$3,635,482'}, {'Title': 'Eternal Sunshine of the Spotless Mind', 'Year': '2004', 'Genre': 'Drama, Romance, Sci-Fi', 'Director': 'Michel Gondry', 'Actors': 'Jim Carrey, Kate Winslet, Tom Wilkinson', 'IMDb Rating': '8.3', 'BoxOffice': '$34,400,301'}, {'Title': 'Coco', 'Year': '2017', 'Genre': 'Animation, Adventure, Drama', 'Director': 'Lee Unkrich, Adrian Molina', 'Actors': 'Anthony Gonzalez, Gael García Bernal, Benjamin Bratt', 'IMDb Rating': '8.4', 'BoxOffice': '$210,460,015'}, {'Title': 'The Dark Knight Rises', 'Year': '2012', 'Genre': 'Action, Drama, Thriller', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Tom Hardy, Anne Hathaway', 'IMDb Rating': '8.4', 'BoxOffice': '$448,149,584'}, {'Title': 'A Clockwork Orange', 'Year': '1971', 'Genre': 'Crime, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Malcolm McDowell, Patrick Magee, Michael Bates', 'IMDb Rating': '8.3', 'BoxOffice': '$26,617,553'}, {'Title': '2001: A Space Odyssey', 'Year': '1968', 'Genre': 'Adventure, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Keir Dullea, Gary Lockwood, William Sylvester', 'IMDb Rating': '8.3', 'BoxOffice': '$60,481,243'}, {'Title': 'Chinatown', 'Year': '1974', 'Genre': 'Drama, Mystery, Thriller', 'Director': 'Roman Polanski', 'Actors': 'Jack Nicholson, Faye Dunaway, John Huston', 'IMDb Rating': '8.1', 'BoxOffice': '$29,200,000'}, {'Title': 'Monty Python and the Holy Grail', 'Year': '1975', 'Genre': 'Adventure, Comedy, Fantasy', 'Director': 'Terry Gilliam, Terry Jones', 'Actors': 'Graham Chapman, John Cleese, Eric Idle', 'IMDb Rating': '8.2', 'BoxOffice': '$2,562,392'}, {'Title': 'Bicycle Thieves', 'Year': '1948', 'Genre': 'Drama', 'Director': 'Vittorio De Sica', 'Actors': 'Lamberto Maggiorani, Enzo Staiola, Lianella Carell', 'IMDb Rating': '8.3', 'BoxOffice': '$371,111'}, {'Title': 'The Seventh Seal', 'Year': '1957', 'Genre': 'Drama, Fantasy', 'Director': 'Ingmar Bergman', 'Actors': 'Max von Sydow, Gunnar Björnstrand, Bengt Ekerot', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Ikiru', 'Year': '1952', 'Genre': 'Drama', 'Director': 'Akira Kurosawa', 'Actors': "Takashi Shimura, Nobuo Kaneko, Shin'ichi Himori", 'IMDb Rating': '8.3', 'BoxOffice': '$60,239'}, {'Title': 'Touch of Evil', 'Year': '1958', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Orson Welles', 'Actors': 'Charlton Heston, Orson Welles, Janet Leigh', 'IMDb Rating': '8.0', 'BoxOffice': '$2,247,465'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': 'Aliens', 'Year': '1986', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'James Cameron', 'Actors': 'Sigourney Weaver, Michael Biehn, Carrie Henn', 'IMDb Rating': '8.4', 'BoxOffice': '$85,160,248'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Ran', 'Year': '1985', 'Genre': 'Action, Drama, War', 'Director': 'Akira Kurosawa', 'Actors': 'Tatsuya Nakadai, Akira Terao, Jinpachi Nezu', 'IMDb Rating': '8.2', 'BoxOffice': '$4,135,750'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Metropolis', 'Year': '1927', 'Genre': 'Drama, Sci-Fi', 'Director': 'Fritz Lang', 'Actors': 'Brigitte Helm, Alfred Abel, Gustav Fröhlich', 'IMDb Rating': '8.3', 'BoxOffice': '$1,236,166'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'Wild Strawberries', 'Year': '1957', 'Genre': 'Drama, Romance', 'Director': 'Ingmar Bergman', 'Actors': 'Victor Sjöström, Bibi Andersson, Ingrid Thulin', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Kid', 'Year': '1921', 'Genre': 'Comedy, Drama, Family', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Edna Purviance, Jackie Coogan', 'IMDb Rating': '8.2', 'BoxOffice': 'N/A'}, {'Title': 'Braveheart', 'Year': '1995', 'Genre': 'Biography, Drama, War', 'Director': 'Mel Gibson', 'Actors': 'Mel Gibson, Sophie Marceau, Patrick McGoohan', 'IMDb Rating': '8.3', 'BoxOffice': '$75,609,945'}, {'Title': 'Requiem for a Dream', 'Year': '2000', 'Genre': 'Drama', 'Director': 'Darren Aronofsky', 'Actors': 'Ellen Burstyn, Jared Leto, Jennifer Connelly', 'IMDb Rating': '8.3', 'BoxOffice': '$3,635,482'}, {'Title': 'Eternal Sunshine of the Spotless Mind', 'Year': '2004', 'Genre': 'Drama, Romance, Sci-Fi', 'Director': 'Michel Gondry', 'Actors': 'Jim Carrey, Kate Winslet, Tom Wilkinson', 'IMDb Rating': '8.3', 'BoxOffice': '$34,400,301'}, {'Title': 'Coco', 'Year': '2017', 'Genre': 'Animation, Adventure, Drama', 'Director': 'Lee Unkrich, Adrian Molina', 'Actors': 'Anthony Gonzalez, Gael García Bernal, Benjamin Bratt', 'IMDb Rating': '8.4', 'BoxOffice': '$210,460,015'}, {'Title': 'The Dark Knight Rises', 'Year': '2012', 'Genre': 'Action, Drama, Thriller', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Tom Hardy, Anne Hathaway', 'IMDb Rating': '8.4', 'BoxOffice': '$448,149,584'}, {'Title': 'A Clockwork Orange', 'Year': '1971', 'Genre': 'Crime, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Malcolm McDowell, Patrick Magee, Michael Bates', 'IMDb Rating': '8.3', 'BoxOffice': '$26,617,553'}, {'Title': '2001: A Space Odyssey', 'Year': '1968', 'Genre': 'Adventure, Sci-Fi', 'Director': 'Stanley Kubrick', 'Actors': 'Keir Dullea, Gary Lockwood, William Sylvester', 'IMDb Rating': '8.3', 'BoxOffice': '$60,481,243'}, {'Title': 'Chinatown', 'Year': '1974', 'Genre': 'Drama, Mystery, Thriller', 'Director': 'Roman Polanski', 'Actors': 'Jack Nicholson, Faye Dunaway, John Huston', 'IMDb Rating': '8.1', 'BoxOffice': '$29,200,000'}, {'Title': 'Monty Python and the Holy Grail', 'Year': '1975', 'Genre': 'Adventure, Comedy, Fantasy', 'Director': 'Terry Gilliam, Terry Jones', 'Actors': 'Graham Chapman, John Cleese, Eric Idle', 'IMDb Rating': '8.2', 'BoxOffice': '$2,562,392'}, {'Title': 'Bicycle Thieves', 'Year': '1948', 'Genre': 'Drama', 'Director': 'Vittorio De Sica', 'Actors': 'Lamberto Maggiorani, Enzo Staiola, Lianella Carell', 'IMDb Rating': '8.3', 'BoxOffice': '$371,111'}, {'Title': 'The Seventh Seal', 'Year': '1957', 'Genre': 'Drama, Fantasy', 'Director': 'Ingmar Bergman', 'Actors': 'Max von Sydow, Gunnar Björnstrand, Bengt Ekerot', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Ikiru', 'Year': '1952', 'Genre': 'Drama', 'Director': 'Akira Kurosawa', 'Actors': "Takashi Shimura, Nobuo Kaneko, Shin'ichi Himori", 'IMDb Rating': '8.3', 'BoxOffice': '$60,239'}, {'Title': 'Touch of Evil', 'Year': '1958', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Orson Welles', 'Actors': 'Charlton Heston, Orson Welles, Janet Leigh', 'IMDb Rating': '8.0', 'BoxOffice': '$2,247,465'}, {'Title': 'Mr. Smith Goes to Washington', 'Year': '1939', 'Genre': 'Comedy, Drama', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Jean Arthur, Claude Rains', 'IMDb Rating': '8.1', 'BoxOffice': '$144,738'}, {'Title': 'To Kill a Mockingbird', 'Year': '1962', 'Genre': 'Crime, Drama', 'Director': 'Robert Mulligan', 'Actors': 'Gregory Peck, John Megna, Frank Overton', 'IMDb Rating': '8.3', 'BoxOffice': '$592,237'}, {'Title': 'Star Wars: Episode VI - Return of the Jedi', 'Year': '1983', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Richard Marquand', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.3', 'BoxOffice': '$316,566,101'}, {'Title': 'Blade Runner', 'Year': '1982', 'Genre': 'Action, Drama, Sci-Fi', 'Director': 'Ridley Scott', 'Actors': 'Harrison Ford, Rutger Hauer, Sean Young', 'IMDb Rating': '8.1', 'BoxOffice': '$32,914,489'}, {'Title': 'Once Upon a Time in America', 'Year': '1984', 'Genre': 'Crime, Drama', 'Director': 'Sergio Leone', 'Actors': 'Robert De Niro, James Woods, Elizabeth McGovern', 'IMDb Rating': '8.3', 'BoxOffice': '$5,321,508'}, {'Title': 'Aliens', 'Year': '1986', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'James Cameron', 'Actors': 'Sigourney Weaver, Michael Biehn, Carrie Henn', 'IMDb Rating': '8.4', 'BoxOffice': '$85,160,248'}, {'Title': 'Full Metal Jacket', 'Year': '1987', 'Genre': 'Drama, War', 'Director': 'Stanley Kubrick', 'Actors': "Matthew Modine, R. Lee Ermey, Vincent D'Onofrio", 'IMDb Rating': '8.3', 'BoxOffice': '$46,357,676'}, {'Title': 'The Sting', 'Year': '1973', 'Genre': 'Comedy, Crime, Drama', 'Director': 'George Roy Hill', 'Actors': 'Paul Newman, Robert Redford, Robert Shaw', 'IMDb Rating': '8.3', 'BoxOffice': '$156,000,000'}, {'Title': 'Taxi Driver', 'Year': '1976', 'Genre': 'Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Jodie Foster, Cybill Shepherd', 'IMDb Rating': '8.2', 'BoxOffice': '$28,262,574'}, {'Title': 'Ran', 'Year': '1985', 'Genre': 'Action, Drama, War', 'Director': 'Akira Kurosawa', 'Actors': 'Tatsuya Nakadai, Akira Terao, Jinpachi Nezu', 'IMDb Rating': '8.2', 'BoxOffice': '$4,135,750'}, {'Title': 'Amadeus', 'Year': '1984', 'Genre': 'Biography, Drama, Music', 'Director': 'Milos Forman', 'Actors': 'F. Murray Abraham, Tom Hulce, Elizabeth Berridge', 'IMDb Rating': '8.4', 'BoxOffice': '$51,973,029'}, {'Title': 'Metropolis', 'Year': '1927', 'Genre': 'Drama, Sci-Fi', 'Director': 'Fritz Lang', 'Actors': 'Brigitte Helm, Alfred Abel, Gustav Fröhlich', 'IMDb Rating': '8.3', 'BoxOffice': '$1,236,166'}, {'Title': 'M', 'Year': '1931', 'Genre': 'Crime, Mystery, Thriller', 'Director': 'Fritz Lang', 'Actors': 'Peter Lorre, Ellen Widmann, Inge Landgut', 'IMDb Rating': '8.3', 'BoxOffice': '$35,566'}, {'Title': 'Wild Strawberries', 'Year': '1957', 'Genre': 'Drama, Romance', 'Director': 'Ingmar Bergman', 'Actors': 'Victor Sjöström, Bibi Andersson, Ingrid Thulin', 'IMDb Rating': '8.1', 'BoxOffice': 'N/A'}, {'Title': 'Double Indemnity', 'Year': '1944', 'Genre': 'Crime, Drama, Film-Noir', 'Director': 'Billy Wilder', 'Actors': 'Fred MacMurray, Barbara Stanwyck, Edward G. Robinson', 'IMDb Rating': '8.3', 'BoxOffice': 'N/A'}, {'Title': "Singin' in the Rain", 'Year': '1952', 'Genre': 'Comedy, Musical, Romance', 'Director': 'Stanley Donen, Gene Kelly', 'Actors': "Gene Kelly, Donald O'Connor, Debbie Reynolds", 'IMDb Rating': '8.3', 'BoxOffice': '$1,884,537'}, {'Title': 'The Apartment', 'Year': '1960', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Billy Wilder', 'Actors': 'Jack Lemmon, Shirley MacLaine, Fred MacMurray', 'IMDb Rating': '8.3', 'BoxOffice': '$18,600,000'}, {'Title': 'The Kid', 'Year': '1921', 'Genre': 'Comedy, Drama, Family', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Edna Purviance, Jackie Coogan', 'IMDb Rating': '8.2', 'BoxOffice': 'N/A'},{'Title': 'The Shawshank Redemption', 'Year': '1994', 'Genre': 'Drama', 'Director': 'Frank Darabont', 'Actors': 'Tim Robbins, Morgan Freeman, Bob Gunton', 'IMDb Rating': '9.3', 'BoxOffice': '$28,767,189'}, {'Title': 'The Godfather', 'Year': '1972', 'Genre': 'Crime, Drama', 'Director': 'Francis Ford Coppola', 'Actors': 'Marlon Brando, Al Pacino, James Caan', 'IMDb Rating': '9.2', 'BoxOffice': '$136,381,073'}, {'Title': 'The Godfather Part II', 'Year': '1974', 'Genre': 'Crime, Drama', 'Director': 'Francis Ford Coppola', 'Actors': 'Al Pacino, Robert De Niro, Robert Duvall', 'IMDb Rating': '9.0', 'BoxOffice': '$47,834,595'}, {'Title': 'The Dark Knight', 'Year': '2008', 'Genre': 'Action, Crime, Drama', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Heath Ledger, Aaron Eckhart', 'IMDb Rating': '9.0', 'BoxOffice': '$534,987,076'}, {'Title': '12 Angry Men', 'Year': '1957', 'Genre': 'Crime, Drama', 'Director': 'Sidney Lumet', 'Actors': 'Henry Fonda, Lee J. Cobb, Martin Balsam', 'IMDb Rating': '9.0', 'BoxOffice': 'N/A'}, {'Title': "Schindler's List", 'Year': '1993', 'Genre': 'Biography, Drama, History', 'Director': 'Steven Spielberg', 'Actors': 'Liam Neeson, Ralph Fiennes, Ben Kingsley', 'IMDb Rating': '9.0', 'BoxOffice': '$96,898,818'}, {'Title': 'The Lord of the Rings: The Return of the King', 'Year': '2003', 'Genre': 'Action, Adventure, Drama', 'Director': 'Peter Jackson', 'Actors': 'Elijah Wood, Viggo Mortensen, Ian McKellen', 'IMDb Rating': '9.0', 'BoxOffice': '$379,427,292'}, {'Title': 'Pulp Fiction', 'Year': '1994', 'Genre': 'Crime, Drama', 'Director': 'Quentin Tarantino', 'Actors': 'John Travolta, Uma Thurman, Samuel L. Jackson', 'IMDb Rating': '8.9', 'BoxOffice': '$107,928,762'}, {'Title': 'The Good, the Bad and the Ugly', 'Year': '1966', 'Genre': 'Adventure, Western', 'Director': 'Sergio Leone', 'Actors': 'Clint Eastwood, Eli Wallach, Lee Van Cleef', 'IMDb Rating': '8.8', 'BoxOffice': '$25,100,000'}, {'Title': 'Fight Club', 'Year': '1999', 'Genre': 'Drama', 'Director': 'David Fincher', 'Actors': 'Brad Pitt, Edward Norton, Meat Loaf', 'IMDb Rating': '8.8', 'BoxOffice': '$37,030,102'}, {'Title': 'The Lord of the Rings: The Fellowship of the Ring', 'Year': '2001', 'Genre': 'Action, Adventure, Drama', 'Director': 'Peter Jackson', 'Actors': 'Elijah Wood, Ian McKellen, Orlando Bloom', 'IMDb Rating': '8.9', 'BoxOffice': '$316,115,420'}, {'Title': 'Star Wars: Episode V - The Empire Strikes Back', 'Year': '1980', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'Irvin Kershner', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.7', 'BoxOffice': '$292,753,960'}, {'Title': 'Forrest Gump', 'Year': '1994', 'Genre': 'Drama, Romance', 'Director': 'Robert Zemeckis', 'Actors': 'Tom Hanks, Robin Wright, Gary Sinise', 'IMDb Rating': '8.8', 'BoxOffice': '$330,455,270'}, {'Title': 'Inception', 'Year': '2010', 'Genre': 'Action, Adventure, Sci-Fi', 'Director': 'Christopher Nolan', 'Actors': 'Leonardo DiCaprio, Joseph Gordon-Levitt, Elliot Page', 'IMDb Rating': '8.8', 'BoxOffice': '$292,587,330'}, {'Title': 'The Lord of the Rings: The Two Towers', 'Year': '2002', 'Genre': 'Action, Adventure, Drama', 'Director': 'Peter Jackson', 'Actors': 'Elijah Wood, Ian McKellen, Viggo Mortensen', 'IMDb Rating': '8.8', 'BoxOffice': '$342,952,511'}, {'Title': "One Flew Over the Cuckoo's Nest", 'Year': '1975', 'Genre': 'Drama', 'Director': 'Milos Forman', 'Actors': 'Jack Nicholson, Louise Fletcher, Michael Berryman', 'IMDb Rating': '8.7', 'BoxOffice': '$108,981,275'}, {'Title': 'Goodfellas', 'Year': '1990', 'Genre': 'Biography, Crime, Drama', 'Director': 'Martin Scorsese', 'Actors': 'Robert De Niro, Ray Liotta, Joe Pesci', 'IMDb Rating': '8.7', 'BoxOffice': '$46,909,721'}, {'Title': 'The Matrix', 'Year': '1999', 'Genre': 'Action, Sci-Fi', 'Director': 'Lana Wachowski, Lilly Wachowski', 'Actors': 'Keanu Reeves, Laurence Fishburne, Carrie-Anne Moss', 'IMDb Rating': '8.7', 'BoxOffice': '$172,076,928'}, {'Title': 'Seven Samurai', 'Year': '1954', 'Genre': 'Action, Drama', 'Director': 'Akira Kurosawa', 'Actors': 'Toshirô Mifune, Takashi Shimura, Keiko Tsushima', 'IMDb Rating': '8.6', 'BoxOffice': '$318,649'}, {'Title': 'Star Wars: Episode IV - A New Hope', 'Year': '1977', 'Genre': 'Action, Adventure, Fantasy', 'Director': 'George Lucas', 'Actors': 'Mark Hamill, Harrison Ford, Carrie Fisher', 'IMDb Rating': '8.6', 'BoxOffice': '$460,998,507'}, {'Title': 'City of God', 'Year': '2002', 'Genre': 'Crime, Drama', 'Director': 'Fernando Meirelles, Kátia Lund', 'Actors': 'Alexandre Rodrigues, Leandro Firmino, Matheus Nachtergaele', 'IMDb Rating': '8.6', 'BoxOffice': '$7,564,459'}, {'Title': 'Se7en', 'Year': '1995', 'Genre': 'Crime, Drama, Mystery', 'Director': 'David Fincher', 'Actors': 'Morgan Freeman, Brad Pitt, Kevin Spacey', 'IMDb Rating': '8.6', 'BoxOffice': '$100,125,643'}, {'Title': 'The Silence of the Lambs', 'Year': '1991', 'Genre': 'Crime, Drama, Thriller', 'Director': 'Jonathan Demme', 'Actors': 'Jodie Foster, Anthony Hopkins, Scott Glenn', 'IMDb Rating': '8.6', 'BoxOffice': '$130,742,922'}, {'Title': "It's a Wonderful Life", 'Year': '1946', 'Genre': 'Drama, Family, Fantasy', 'Director': 'Frank Capra', 'Actors': 'James Stewart, Donna Reed, Lionel Barrymore', 'IMDb Rating': '8.6', 'BoxOffice': '$1,483,643'}, {'Title': 'The Usual Suspects', 'Year': '1995', 'Genre': 'Crime, Drama, Mystery', 'Director': 'Bryan Singer', 'Actors': 'Kevin Spacey, Gabriel Byrne, Chazz Palminteri', 'IMDb Rating': '8.5', 'BoxOffice': '$23,341,568'}, {'Title': 'Life Is Beautiful', 'Year': '1997', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Roberto Benigni', 'Actors': 'Roberto Benigni, Nicoletta Braschi, Giorgio Cantarini', 'IMDb Rating': '8.6', 'BoxOffice': '$57,563,264'}, {'Title': 'Léon: The Professional', 'Year': '1994', 'Genre': 'Action, Crime, Drama', 'Director': 'Luc Besson', 'Actors': 'Jean Reno, Gary Oldman, Natalie Portman', 'IMDb Rating': '8.5', 'BoxOffice': '$19,501,238'}, {'Title': 'Spirited Away', 'Year': '2001', 'Genre': 'Animation, Adventure, Family', 'Director': 'Hayao Miyazaki', 'Actors': 'Daveigh Chase, Suzanne Pleshette, Miyu Irino', 'IMDb Rating': '8.6', 'BoxOffice': '$15,205,725'}, {'Title': 'Saving Private Ryan', 'Year': '1998', 'Genre': 'Drama, War', 'Director': 'Steven Spielberg', 'Actors': 'Tom Hanks, Matt Damon, Tom Sizemore', 'IMDb Rating': '8.6', 'BoxOffice': '$217,049,603'}, {'Title': 'The Green Mile', 'Year': '1999', 'Genre': 'Crime, Drama, Fantasy', 'Director': 'Frank Darabont', 'Actors': 'Tom Hanks, Michael Clarke Duncan, David Morse', 'IMDb Rating': '8.6', 'BoxOffice': '$136,801,374'}, {'Title': 'Interstellar', 'Year': '2014', 'Genre': 'Adventure, Drama, Sci-Fi', 'Director': 'Christopher Nolan', 'Actors': 'Matthew McConaughey, Anne Hathaway, Jessica Chastain', 'IMDb Rating': '8.7', 'BoxOffice': '$188,020,017'}, {'Title': 'Psycho', 'Year': '1960', 'Genre': 'Horror, Mystery, Thriller', 'Director': 'Alfred Hitchcock', 'Actors': 'Anthony Perkins, Janet Leigh, Vera Miles', 'IMDb Rating': '8.5', 'BoxOffice': '$32,000,000'}, {'Title': 'American History X', 'Year': '1998', 'Genre': 'Crime, Drama', 'Director': 'Tony Kaye', 'Actors': "Edward Norton, Edward Furlong, Beverly D'Angelo", 'IMDb Rating': '8.5', 'BoxOffice': '$6,719,864'}, {'Title': 'City Lights', 'Year': '1931', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Virginia Cherrill, Florence Lee', 'IMDb Rating': '8.5', 'BoxOffice': '$19,181'}, {'Title': 'Casablanca', 'Year': '1942', 'Genre': 'Drama, Romance, War', 'Director': 'Michael Curtiz', 'Actors': 'Humphrey Bogart, Ingrid Bergman, Paul Henreid', 'IMDb Rating': '8.5', 'BoxOffice': '$4,219,709'}, {'Title': 'The Pianist', 'Year': '2002', 'Genre': 'Biography, Drama, Music', 'Director': 'Roman Polanski', 'Actors': 'Adrien Brody, Thomas Kretschmann, Frank Finlay', 'IMDb Rating': '8.5', 'BoxOffice': '$32,588,440'}, {'Title': 'Gladiator', 'Year': '2000', 'Genre': 'Action, Adventure, Drama', 'Director': 'Ridley Scott', 'Actors': 'Russell Crowe, Joaquin Phoenix, Connie Nielsen', 'IMDb Rating': '8.5', 'BoxOffice': '$187,705,427'}, {'Title': 'Modern Times', 'Year': '1936', 'Genre': 'Comedy, Drama, Romance', 'Director': 'Charles Chaplin', 'Actors': 'Charles Chaplin, Paulette Goddard, Henry Bergman', 'IMDb Rating': '8.5', 'BoxOffice': '$163,577'}, {'Title': 'The Intouchables', 'Year': '2011', 'Genre': 'Comedy, Drama', 'Director': 'Olivier Nakache, Éric Toledano', 'Actors': 'François Cluzet, Omar Sy, Anne Le Ny', 'IMDb Rating': '8.5', 'BoxOffice': '$10,198,820'}, {'Title': 'The Departed', 'Year': '2006', 'Genre': 'Crime, Drama, Thriller', 'Director': 'Martin Scorsese', 'Actors': 'Leonardo DiCaprio, Matt Damon, Jack Nicholson', 'IMDb Rating': '8.5', 'BoxOffice': '$132,399,394'}, {'Title': 'Whiplash', 'Year': '2014', 'Genre': 'Drama, Music', 'Director': 'Damien Chazelle', 'Actors': 'Miles Teller, J.K. Simmons, Melissa Benoist', 'IMDb Rating': '8.5', 'BoxOffice': '$13,092,000'}, {'Title': 'The Prestige', 'Year': '2006', 'Genre': 'Drama, Mystery, Sci-Fi', 'Director': 'Christopher Nolan', 'Actors': 'Christian Bale, Hugh Jackman, Scarlett Johansson', 'IMDb Rating': '8.5', 'BoxOffice': '$53,089,891'}
]

# 데이터 전처리
df = pd.DataFrame(movies_data)
df['BoxOffice'] = df['BoxOffice'].replace({'\$': '', ',': '', 'N/A': None}, regex=True).astype(float)
df['IMDb Rating'] = df['IMDb Rating'].astype(float)

# 장르 분리
df['Genre'] = df['Genre'].str.split(', ').apply(lambda x: x[0])  # 첫 번째 장르만 사용

# 장르별 평균 평점 및 수익 계산
genre_analysis = df.groupby('Genre')[['IMDb Rating', 'BoxOffice']].mean().reset_index()


# 상관관계 시각화
plt.figure(figsize=(14, 8))
sns.scatterplot(x='IMDb Rating', y='BoxOffice', hue='Genre', data=genre_analysis, s=100)
plt.title('Correlation Between IMDb Rating and Box Office Revenue by Genre')
plt.xlabel('Average IMDb Rating')
plt.ylabel('Average Box Office Revenue')
plt.legend(title='Genre')
plt.grid(True)
plt.show()

# 장르별 상관관계 계산 (옵션)
for genre in genre_analysis['Genre'].unique():
    genre_group = df[df['Genre'] == genre]
    correlation = genre_group['IMDb Rating'].corr(genre_group['BoxOffice'])
    print(f"Correlation for {genre}: {correlation}")

png

Correlation for Action: 0.5404456686762255
Correlation for Adventure: 0.5947516341837207
Correlation for Animation: -1.0
Correlation for Biography: 0.11463635281335928
Correlation for Comedy: 0.16225679121145906
Correlation for Crime: 0.6704184912733975
Correlation for Drama: 0.430123958577123
Correlation for Horror: nan


/usr/local/lib/python3.10/dist-packages/numpy/lib/function_base.py:2889: RuntimeWarning: Degrees of freedom <= 0 for slice
  c = cov(x, y, rowvar, dtype=dtype)
/usr/local/lib/python3.10/dist-packages/numpy/lib/function_base.py:2748: RuntimeWarning: divide by zero encountered in divide
  c *= np.true_divide(1, fact)

Updated: