Skip to content

Instantly share code, notes, and snippets.

@fjolnir
Last active August 29, 2015 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fjolnir/f08999a6284533f4274d to your computer and use it in GitHub Desktop.
Save fjolnir/f08999a6284533f4274d to your computer and use it in GitHub Desktop.
// Returns results sorted by rank
var search = function(searchString, haystack) {
// Split search string into an array of terms (grouping together quoted strings)
var terms = searchString.match(/"(?:\\"|\\\\|[^"])*"|\S+/g).map(function(term) {
return term.replace(/^"/, "").replace(/"$/, "");
});
// Calculates the rank for a single value
var calculateRank = function(value) {
if(typeof value == "number")
return calculateRank(value.toString())
else if(value instanceof Array) {
var ranking = 0;
value.forEach(function(nestedValue) {
ranking += calculateRank(nestedValue);
});
return ranking;
} else if(typeof value == "string") {
var ranking = 0;
terms.forEach(function(term) {
var matches = value.match(new RegExp(term, 'ig'));
if(matches) ranking += matches.length;
});
return ranking;
} else
return 0;
}
var results = [];
haystack.forEach(function(straw) {
var ranking = 0;
for(key in straw)
ranking += calculateRank(straw[key]);
if(ranking > 0)
results.push({ ranking: ranking, value: straw });
});
return results.sort(function(a, b) {
return b.ranking - a.ranking;
}).map(function(result) {
return result.value;
});
}
movies = [
{
"name": "The Shawshank Redemption",
"outline": "Two imprisoned men bond over a number of years, finding solace and eventual redemption through acts of common decency.",
"rating": 9.3,
"director": "Frank Darabont",
"year": 1994,
"stars": [
"Tim Robbins",
"Morgan Freeman",
"Bob Gunton"
],
"runtime": 142,
"genre": [
"Crime",
"Drama"
],
"certificate": "R",
"date": "1974-04-30T10:29:29+05:30",
"actor": "Tim Robbins",
"id": 1
},
{
"name": "The Godfather",
"outline": "The aging patriarch of an organized crime dynasty transfers control of his clandestine empire to his reluctant son.",
"rating": 9.2,
"director": "Francis Ford Coppola",
"year": 1972,
"stars": [
"Marlon Brando",
"Al Pacino",
"James Caan"
],
"runtime": 175,
"genre": [
"Crime",
"Drama"
],
"certificate": "R",
"date": "1974-07-12T10:29:29+05:30",
"actor": "Marlon Brando",
"id": 2
},
{
"name": "The Godfather: Part II",
"outline": "The early life and career of Vito Corleone in 1920s New York is portrayed while his son, Michael, expands and tightens his grip on his crime syndicate stretching from Lake Tahoe, Nevada to pre-revolution 1958 Cuba.",
"rating": 9.1,
"director": "Francis Ford Coppola",
"year": 1974,
"stars": [
"Al Pacino",
"Robert De Niro",
"Robert Duvall"
],
"runtime": 200,
"genre": [
"Crime",
"Drama"
],
"certificate": "R",
"date": "1992-08-23T10:29:29+05:30",
"actor": "Al Pacino",
"id": 3
},
{
"name": "Pulp Fiction",
"outline": "The lives of two mob hit men, a boxer, a gangster's wife, and a pair of diner bandits intertwine in four tales of violence and redemption.",
"rating": 9.0,
"director": "Quentin Tarantino",
"year": 1994,
"stars": [
"John Travolta",
"Uma Thurman",
"Samuel L. Jackson"
],
"runtime": 154,
"genre": [
"Crime",
"Thriller"
],
"certificate": "R",
"date": "1994-02-09T10:29:29+05:30",
"actor": "John Travolta",
"id": 4
},
{
"name": "The Good, the Bad and the Ugly",
"outline": "A bounty hunting scam joins two men in an uneasy alliance against a third in a race to find a fortune in gold buried in a remote cemetery.",
"rating": 9.0,
"director": "Sergio Leone",
"year": 1966,
"stars": [
"Clint Eastwood",
"Eli Wallach",
"Lee Van Cleef"
],
"runtime": 161,
"genre": [
"Adventure",
"Western"
],
"certificate": "TV_14",
"date": "1980-10-05T10:29:29+05:30",
"actor": "Clint Eastwood",
"id": 5
},
{
"name": "The Dark Knight",
"outline": "When Batman, Gordon and Harvey Dent launch an assault on the mob, they let the clown out of the box, the Joker, bent on turning Gotham on itself and bringing any heroes down to his level.",
"rating": 9.0,
"director": "Christopher Nolan",
"year": 2008,
"stars": [
"Christian Bale",
"Heath Ledger",
"Aaron Eckhart"
],
"runtime": 152,
"genre": [
"Action",
"Crime",
"Drama",
"Thriller"
],
"certificate": "PG_13",
"date": "2002-09-14T10:29:29+05:30",
"actor": "Christian Bale",
"id": 6
},
{
"name": "12 Angry Men",
"outline": "A dissenting juror in a murder trial slowly manages to convince the others that the case is not as obviously clear as it seemed in court.",
"rating": 8.9,
"director": "Sidney Lumet",
"year": 1957,
"stars": [
"Henry Fonda",
"Lee J. Cobb",
"Martin Balsam"
],
"runtime": 96,
"genre": [
"Drama"
],
"certificate": "APPROVED",
"date": "1993-11-21T10:29:29+05:30",
"actor": "Henry Fonda",
"id": 7
},
{
"name": "Schindler's List",
"outline": "In Poland during World War II, Oskar Schindler gradually becomes concerned for his Jewish workforce after witnessing their persecution by the Nazis.",
"rating": 8.9,
"director": "Steven Spielberg",
"year": 1993,
"stars": [
"Liam Neeson",
"Ralph Fiennes",
"Ben Kingsley"
],
"runtime": 195,
"genre": [
"Biography",
"Drama",
"History",
"War"
],
"certificate": "R",
"date": "1991-03-02T10:29:29+05:30",
"actor": "Liam Neeson",
"id": 8
},
{
"name": "The Lord of the Rings: The Return of the King",
"outline": "Gandalf and Aragorn lead the World of Men against Sauron's army to draw his gaze from Frodo and Sam as they approach Mount Doom with the One Ring.",
"rating": 8.9,
"director": "Peter Jackson",
"year": 2003,
"stars": [
"Elijah Wood",
"Viggo Mortensen",
"Ian McKellen"
],
"runtime": 201,
"genre": [
"Action",
"Adventure",
"Fantasy"
],
"certificate": "PG_13",
"date": "2007-01-29T10:29:29+05:30",
"actor": "Elijah Wood",
"id": 9
},
{
"name": "Fight Club",
"outline": "An insomniac office worker looking for a way to change his life crosses paths with a devil-may-care soap maker and they form an underground fight club that evolves into something much, much more...",
"rating": 8.9,
"director": "David Fincher",
"year": 1999,
"stars": [
"Brad Pitt",
"Edward Norton",
"Helena Bonham Carter"
],
"runtime": 139,
"genre": [
"Drama"
],
"certificate": "R",
"date": "1989-05-06T10:29:29+05:30",
"actor": "Brad Pitt",
"id": 10
},
{
"name": "Star Wars: Episode V - The Empire Strikes Back",
"outline": "As Luke trains with Master Yoda to become a Jedi Knight, his friends evade the Imperial fleet under the command of Darth Vader who is obsessed with turning Skywalker to the Dark Side of the Force.",
"rating": 8.8,
"director": "Irvin Kershner",
"year": 1980,
"stars": [
"Mark Hamill",
"Harrison Ford",
"Carrie Fisher"
],
"runtime": 124,
"genre": [
"Action",
"Adventure",
"Sci-Fi"
],
"certificate": "PG",
"date": "1993-02-18T10:29:29+05:30",
"actor": "Mark Hamill",
"id": 11
},
{
"name": "The Lord of the Rings: The Fellowship of the Ring",
"outline": "A meek hobbit of The Shire and eight companions set out on a journey to Mount Doom to destroy the One Ring and the dark lord Sauron.",
"rating": 8.8,
"director": "Peter Jackson",
"year": 2001,
"stars": [
"Elijah Wood",
"Ian McKellen",
"Orlando Bloom"
],
"runtime": 178,
"genre": [
"Action",
"Adventure",
"Fantasy"
],
"certificate": "PG_13",
"date": "1984-11-28T10:29:29+05:30",
"actor": "Elijah Wood",
"id": 12
},
{
"name": "Inception",
"outline": "A skilled extractor is offered a chance to regain his old life as payment for a task considered to be impossible.",
"rating": 8.8,
"director": "Christopher Nolan",
"year": 2010,
"stars": [
"Leonardo DiCaprio",
"Joseph Gordon-Levitt",
"Ellen Page"
],
"runtime": 148,
"genre": [
"Action",
"Adventure",
"Mystery",
"Sci-Fi",
"Thriller"
],
"certificate": "PG_13",
"date": "2009-02-18T10:29:29+05:30",
"actor": "Leonardo DiCaprio",
"id": 13
},
{
"name": "One Flew Over the Cuckoo's Nest",
"outline": "Upon admittance to a mental institution, a brash rebel rallies the patients to take on the oppressive head nurse, a woman he views as more dictator than nurse.",
"rating": 8.8,
"director": "Milos Forman",
"year": 1975,
"stars": [
"Jack Nicholson",
"Louise Fletcher",
"Michael Berryman"
],
"runtime": 133,
"genre": [
"Drama"
],
"certificate": "R",
"date": "1962-04-17T10:29:29+05:30",
"actor": "Jack Nicholson",
"id": 14
},
{
"name": "Seven Samurai",
"outline": "A poor village under attack by bandits recruits seven unemployed samurai to help them defend themselves.",
"rating": 8.8,
"director": "Akira Kurosawa",
"year": 1954,
"stars": [
"Toshirô Mifune",
"Takashi Shimura",
"Keiko Tsushima"
],
"runtime": 207,
"genre": [
"Action",
"Drama"
],
"certificate": "UNRATED",
"date": "2011-01-08T10:29:29+05:30",
"actor": "Toshirô Mifune",
"id": 15
},
{
"name": "Goodfellas",
"outline": "Henry Hill and his friends work their way up through the mob hierarchy.",
"rating": 8.8,
"director": "Martin Scorsese",
"year": 1990,
"stars": [
"Robert De Niro",
"Ray Liotta",
"Joe Pesci"
],
"runtime": 146,
"genre": [
"Biography",
"Crime",
"Drama",
"Thriller"
],
"certificate": "R",
"date": "1980-08-13T10:29:29+05:30",
"actor": "Robert De Niro",
"id": 16
},
{
"name": "Star Wars",
"outline": "Luke Skywalker, a spirited farm boy, joins rebel forces to save Princess Leia from the evil Darth Vader, and the galaxy from the Empire's planet-destroying Death Star.",
"rating": 8.8,
"director": "George Lucas",
"year": 1977,
"stars": [
"Mark Hamill",
"Harrison Ford",
"Carrie Fisher"
],
"runtime": 121,
"genre": [
"Action",
"Adventure",
"Fantasy",
"Sci-Fi"
],
"certificate": "PG",
"date": "1978-05-18T10:29:29+05:30",
"actor": "Mark Hamill",
"id": 17
},
{
"name": "Forrest Gump",
"outline": "Forrest Gump, while not intelligent, has accidentally been present at many historic moments, but his true love, Jenny Curran, eludes him.",
"rating": 8.7,
"director": "Robert Zemeckis",
"year": 1994,
"stars": [
"Tom Hanks",
"Robin Wright",
"Gary Sinise"
],
"runtime": 142,
"genre": [
"Drama",
"Romance"
],
"certificate": "PG_13",
"date": "1981-11-14T10:29:29+05:30",
"actor": "Tom Hanks",
"id": 18
},
{
"name": "The Lord of the Rings: The Two Towers",
"outline": "While Frodo and Sam edge closer to Mordor with the help of the shifty Gollum, the divided fellowship makes a stand against Sauron's new ally, Saruman, and his hordes of Isengard.",
"rating": 8.7,
"director": "Peter Jackson",
"year": 2002,
"stars": [
"Elijah Wood",
"Ian McKellen",
"Viggo Mortensen"
],
"runtime": 179,
"genre": [
"Action",
"Adventure",
"Fantasy"
],
"certificate": "PG_13",
"date": "1965-05-08T10:29:29+05:30",
"actor": "Elijah Wood",
"id": 19
},
{
"name": "The Matrix",
"outline": "A computer hacker learns from mysterious rebels about the true nature of his reality and his role in the war against its controllers.",
"rating": 8.7,
"director": "Andy Wachowski",
"year": 1999,
"stars": [
"Lana Wachowski",
"Keanu Reeves",
"Laurence Fishburne",
"Carrie-Anne Moss"
],
"runtime": 136,
"genre": [
"Action",
"Adventure",
"Sci-Fi"
],
"certificate": "R",
"date": "1990-11-29T10:29:29+05:30",
"actor": "Lana Wachowski",
"id": 20
},
{
"name": "City of God",
"outline": "Two boys growing up in a violent neighborhood of Rio de Janeiro take different paths: one becomes a photographer, the other a drug dealer.",
"rating": 8.7,
"director": "Fernando Meirelles",
"year": 2002,
"stars": [
"Kátia Lund",
"Alexandre Rodrigues",
"Matheus Nachtergaele",
"Leandro Firmino"
],
"runtime": 130,
"genre": [
"Crime",
"Drama"
],
"certificate": "R",
"date": "2004-10-25T10:29:29+05:30",
"actor": "Kátia Lund",
"id": 21
},
{
"name": "Once Upon a Time in the West",
"outline": "Epic story of a mysterious stranger with a harmonica who joins forces with a notorious desperado to protect a beautiful widow from a ruthless assassin working for the railroad.",
"rating": 8.7,
"director": "Sergio Leone",
"year": 1968,
"stars": [
"Henry Fonda",
"Charles Bronson",
"Claudia Cardinale"
],
"runtime": 175,
"genre": [
"Adventure",
"Western"
],
"certificate": "United States-M",
"date": "2009-01-30T10:29:29+05:30",
"actor": "Henry Fonda",
"id": 22
},
{
"name": "Casablanca",
"outline": "Set in unoccupied Africa during the early days of World War II: An American expatriate meets a former lover, with unforeseen complications.",
"rating": 8.7,
"director": "Michael Curtiz",
"year": 1942,
"stars": [
"Humphrey Bogart",
"Ingrid Bergman",
"Paul Henreid"
],
"runtime": 102,
"genre": [
"Drama",
"Romance",
"War"
],
"certificate": "APPROVED",
"date": "1970-04-10T10:29:29+05:30",
"actor": "Humphrey Bogart",
"id": 23
},
{
"name": "The Usual Suspects",
"outline": "A boat has been destroyed, criminals are dead, and the key to this mystery lies with the only survivor and his twisted, convoluted story beginning with five career crooks in a seemingly random police lineup.",
"rating": 8.7,
"director": "Bryan Singer",
"year": 1995,
"stars": [
"Kevin Spacey",
"Gabriel Byrne",
"Chazz Palminteri"
],
"runtime": 106,
"genre": [
"Crime",
"Mystery",
"Thriller"
],
"certificate": "R",
"date": "1984-06-14T10:29:29+05:30",
"actor": "Kevin Spacey",
"id": 24
},
{
"name": "Se7en",
"outline": "Two detectives, a rookie and a veteran, hunt a serial killer who uses the seven deadly sins as his modus operandi.",
"rating": 8.7,
"director": "David Fincher",
"year": 1995,
"stars": [
"Morgan Freeman",
"Brad Pitt",
"Kevin Spacey"
],
"runtime": 127,
"genre": [
"Crime",
"Mystery",
"Thriller"
],
"certificate": "R",
"date": "1989-07-10T10:29:29+05:30",
"actor": "Morgan Freeman",
"id": 25
},
{
"name": "The Silence of the Lambs",
"outline": "A young FBI cadet must confide in an incarcerated and manipulative killer to receive his help on catching another serial killer who skins his victims.",
"rating": 8.7,
"director": "Jonathan Demme",
"year": 1991,
"stars": [
"Jodie Foster",
"Anthony Hopkins",
"Lawrence A. Bonney"
],
"runtime": 118,
"genre": [
"Crime",
"Drama",
"Thriller"
],
"certificate": "R",
"date": "2009-10-29T10:29:29+05:30",
"actor": "Jodie Foster",
"id": 26
},
{
"name": "It's a Wonderful Life",
"outline": "An angel helps a compassionate but despairingly frustrated businessman by showing what life would have been like if he never existed.",
"rating": 8.7,
"director": "Frank Capra",
"year": 1946,
"stars": [
"James Stewart",
"Donna Reed",
"Lionel Barrymore"
],
"runtime": 130,
"genre": [
"Drama",
"Family",
"Fantasy"
],
"certificate": "APPROVED",
"date": "1982-05-20T10:29:29+05:30",
"actor": "James Stewart",
"id": 27
},
{
"name": "Rear Window",
"outline": "A wheelchair bound photographer spies on his neighbours from his apartment window and becomes convinced one of them has committed murder.",
"rating": 8.7,
"director": "Alfred Hitchcock",
"year": 1954,
"stars": [
"James Stewart",
"Grace Kelly",
"Wendell Corey"
],
"runtime": 112,
"genre": [
"Mystery",
"Thriller"
],
"certificate": "APPROVED",
"date": "1968-10-12T10:29:29+05:30",
"actor": "James Stewart",
"id": 28
},
{
"name": "Raiders of the Lost Ark",
"outline": "Archeologist and adventurer Indiana Jones is hired by the US government to find the Ark of the Covenant before the Nazis.",
"rating": 8.7,
"director": "Steven Spielberg",
"year": 1981,
"stars": [
"Harrison Ford",
"Karen Allen",
"Paul Freeman"
],
"runtime": 115,
"genre": [
"Action",
"Adventure"
],
"certificate": "PG",
"date": "2014-05-17T10:29:29+05:30",
"actor": "Harrison Ford",
"id": 29
},
{
"name": "Léon: The Professional",
"outline": "A professional assassin rescues a teenage girl whose parents were killed in a police raid.",
"rating": 8.6,
"director": "Luc Besson",
"year": 1994,
"stars": [
"Jean Reno",
"Gary Oldman",
"Natalie Portman"
],
"runtime": 110,
"genre": [
"Crime",
"Drama",
"Thriller"
],
"certificate": "UNRATED",
"date": "2004-02-02T10:29:29+05:30",
"actor": "Jean Reno",
"id": 30
},
{
"name": "Psycho",
"outline": "A thirty-something secretary steals $40,000 from her employer's client, and subsequently encounters a young motel proprietor too long under the domination of his mother.",
"rating": 8.6,
"director": "Alfred Hitchcock",
"year": 1960,
"stars": [
"Anthony Perkins",
"Janet Leigh",
"Vera Miles"
],
"runtime": 109,
"genre": [
"Horror",
"Mystery",
"Thriller"
],
"certificate": "TV_14",
"date": "1999-12-23T10:29:29+05:30",
"actor": "Anthony Perkins",
"id": 31
},
{
"name": "The Dark Knight Rises",
"outline": "Eight years on, a new evil rises from where the Batman and Commissioner Gordon tried to bury it, causing the Batman to resurface and fight to protect Gotham City... the very city which brands him an enemy.",
"rating": 8.6,
"director": "Christopher Nolan",
"year": 2012,
"stars": [
"Christian Bale",
"Tom Hardy",
"Anne Hathaway"
],
"runtime": 165,
"genre": [
"Action",
"Crime",
"Thriller"
],
"certificate": "PG_13",
"date": "2013-09-06T10:29:29+05:30",
"actor": "Christian Bale",
"id": 32
},
{
"name": "Sunset Blvd.",
"outline": "A hack screenwriter writes a screenplay for a former silent-film star who has faded into Hollywood obscurity.",
"rating": 8.6,
"director": "Billy Wilder",
"year": 1950,
"stars": [
"William Holden",
"Gloria Swanson",
"Erich von Stroheim"
],
"runtime": 110,
"genre": [
"Drama",
"Film-Noir"
],
"certificate": "APPROVED",
"date": "1998-06-21T10:29:29+05:30",
"actor": "William Holden",
"id": 33
},
{
"name": "City Lights",
"outline": "The Tramp struggles to help a blind flower girl he has fallen in love with.",
"rating": 8.6,
"director": "Charles Chaplin",
"year": 1931,
"stars": [
"Charles Chaplin",
"Virginia Cherrill",
"Florence Lee"
],
"runtime": 87,
"genre": [
"Comedy",
"Drama",
"Romance"
],
"certificate": "United States-PASSED",
"date": "2000-05-05T10:29:29+05:30",
"actor": "Charles Chaplin",
"id": 34
},
{
"name": "American History X",
"outline": "A former neo-nazi skinhead tries to prevent his younger brother from going down the same wrong path that he did.",
"rating": 8.6,
"director": "Tony Kaye",
"year": 1998,
"stars": [
"Edward Norton",
"Edward Furlong",
"Beverly D'Angelo"
],
"runtime": 119,
"genre": [
"Crime",
"Drama"
],
"certificate": "R",
"date": "2001-07-07T10:29:29+05:30",
"actor": "Edward Norton",
"id": 35
},
{
"name": "Django Unchained",
"outline": "With the help of a German bounty hunter, a freed slave sets out to rescue his wife from a brutal Mississippi plantation owner.",
"rating": 8.6,
"director": "Quentin Tarantino",
"year": 2012,
"stars": [
"Jamie Foxx",
"Christoph Waltz",
"Leonardo DiCaprio"
],
"runtime": 165,
"genre": [
"Adventure",
"Crime",
"Drama",
"Western"
],
"certificate": "R",
"date": "1966-10-17T10:29:29+05:30",
"actor": "Jamie Foxx",
"id": 36
},
{
"name": "Memento",
"outline": "A man, suffering from short-term memory loss, uses notes and tattoos to hunt for the man he thinks killed his wife.",
"rating": 8.6,
"director": "Christopher Nolan",
"year": 2000,
"stars": [
"Guy Pearce",
"Carrie-Anne Moss",
"Joe Pantoliano"
],
"runtime": 113,
"genre": [
"Mystery",
"Thriller"
],
"certificate": "R",
"date": "1976-06-23T10:29:29+05:30",
"actor": "Guy Pearce",
"id": 37
},
{
"name": "Apocalypse Now",
"outline": "During the U.S.-Viet Nam War, Captain Willard is sent on a dangerous mission into Cambodia to assassinate a renegade colonel who has set himself up as a god among a local tribe.",
"rating": 8.6,
"director": "Francis Ford Coppola",
"year": 1979,
"stars": [
"Martin Sheen",
"Marlon Brando",
"Robert Duvall"
],
"runtime": 153,
"genre": [
"Drama",
"War"
],
"certificate": "R",
"date": "1969-12-13T10:29:29+05:30",
"actor": "Martin Sheen",
"id": 38
},
{
"name": "Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb",
"outline": "An insane general starts a process to nuclear holocaust that a war room of politicians and generals frantically try to stop.",
"rating": 8.6,
"director": "Stanley Kubrick",
"year": 1964,
"stars": [
"Peter Sellers",
"George C. Scott",
"Sterling Hayden"
],
"runtime": 95,
"genre": [
"Comedy",
"War"
],
"certificate": "APPROVED",
"date": "2014-01-13T10:29:29+05:30",
"actor": "Peter Sellers",
"id": 39
},
{
"name": "Spirited Away",
"outline": "In the middle of her family's move to the suburbs, a sullen 10-year-old girl wanders into a world ruled by gods, witches, and monsters; where humans are changed into animals; and a bathhouse for these creatures.",
"rating": 8.6,
"director": "Hayao Miyazaki",
"year": 2001,
"stars": [
"Daveigh Chase",
"Suzanne Pleshette",
"Miyu Irino"
],
"runtime": 125,
"genre": [
"Animation",
"Adventure",
"Family",
"Fantasy"
],
"certificate": "PG",
"date": "1972-07-29T10:29:29+05:30",
"actor": "Daveigh Chase",
"id": 40
},
{
"name": "Terminator 2: Judgment Day",
"outline": "The cyborg who once tried to kill Sarah Connor is dead, and another T-101 must now protect her teenage son, John Connor, from an even more powerful and advanced Terminator, the T-1000.",
"rating": 8.6,
"director": "James Cameron",
"year": 1991,
"stars": [
"Arnold Schwarzenegger",
"Linda Hamilton",
"Edward Furlong"
],
"runtime": 137,
"genre": [
"Action",
"Sci-Fi",
"Thriller"
],
"certificate": "R",
"date": "1993-11-14T10:29:29+05:30",
"actor": "Arnold Schwarzenegger",
"id": 41
},
{
"name": "Saving Private Ryan",
"outline": "Following the Normandy Landings, a group of U.S. soldiers go behind enemy lines to retrieve a paratrooper whose brothers have been killed in action.",
"rating": 8.6,
"director": "Steven Spielberg",
"year": 1998,
"stars": [
"Tom Hanks",
"Matt Damon",
"Tom Sizemore"
],
"runtime": 169,
"genre": [
"Action",
"Drama",
"War"
],
"certificate": "R",
"date": "1961-11-27T10:29:29+05:30",
"actor": "Tom Hanks",
"id": 42
},
{
"name": "Modern Times",
"outline": "The Tramp struggles to live in modern industrial society with the help of a young homeless woman.",
"rating": 8.6,
"director": "Charles Chaplin",
"year": 1936,
"stars": [
"Charles Chaplin",
"Paulette Goddard",
"Henry Bergman"
],
"runtime": 87,
"genre": [
"Comedy",
"Drama"
],
"certificate": "APPROVED",
"date": "1973-06-27T10:29:29+05:30",
"actor": "Charles Chaplin",
"id": 43
},
{
"name": "The Intouchables",
"outline": "After he becomes a quadriplegic from a paragliding accident, an aristocrat hires a young man from the projects to be his caretaker.",
"rating": 8.5,
"director": "Olivier Nakache",
"year": 2011,
"stars": [
"Eric Toledano",
"François Cluzet",
"Omar Sy",
"Anne Le Ny"
],
"runtime": 112,
"genre": [
"Biography",
"Comedy",
"Drama"
],
"certificate": "R",
"date": "2001-02-01T10:29:29+05:30",
"actor": "Eric Toledano",
"id": 44
},
{
"name": "North by Northwest",
"outline": "A hapless New York advertising executive is mistaken for a government agent by a group of foreign spies, and is pursued across the country while he looks for a way to survive.",
"rating": 8.5,
"director": "Alfred Hitchcock",
"year": 1959,
"stars": [
"Cary Grant",
"Eva Marie Saint",
"James Mason"
],
"runtime": 136,
"genre": [
"Action",
"Adventure",
"Mystery",
"Thriller"
],
"certificate": "APPROVED",
"date": "1977-07-07T10:29:29+05:30",
"actor": "Cary Grant",
"id": 45
},
{
"name": "Alien",
"outline": "The crew of a commercial deep space mining ship, investigating a suspected S.O.S., lands on a distant planet and discovers a nest of strange eggs.",
"rating": 8.5,
"director": "Ridley Scott",
"year": 1979,
"stars": [
"Sigourney Weaver",
"Tom Skerritt",
"John Hurt"
],
"runtime": 117,
"genre": [
"Horror",
"Sci-Fi"
],
"certificate": "TV_14",
"date": "1982-09-09T10:29:29+05:30",
"actor": "Sigourney Weaver",
"id": 46
},
{
"name": "M",
"outline": "When the police in a German city are unable to catch a child-murderer, other criminals join in the manhunt.",
"rating": 8.5,
"director": "Fritz Lang",
"year": 1931,
"stars": [
"Peter Lorre",
"Ellen Widmann",
"Inge Landgut"
],
"runtime": 117,
"genre": [
"Crime",
"Drama",
"Film-Noir",
"Thriller"
],
"certificate": "TV_14",
"date": "2007-09-24T10:29:29+05:30",
"actor": "Peter Lorre",
"id": 47
},
{
"name": "Life Is Beautiful",
"outline": "A Jewish man has a wonderful romance with the help of his humour, but must use that same quality to protect his son in a Nazi death camp.",
"rating": 8.5,
"director": "Roberto Benigni",
"year": 1997,
"stars": [
"Rod Dean",
"Roberto Benigni",
"Nicoletta Braschi",
"Giorgio Cantarini"
],
"runtime": 116,
"genre": [
"Comedy",
"Drama",
"Romance",
"War"
],
"certificate": "PG_13",
"date": "1967-12-05T10:29:29+05:30",
"actor": "Rod Dean",
"id": 48
},
{
"name": "Paths of Glory",
"outline": "When soldiers in WW1 refuse to continue with an impossible attack, their superiors decide to make an example of them.",
"rating": 8.5,
"director": "Stanley Kubrick",
"year": 1957,
"stars": [
"Kirk Douglas",
"Ralph Meeker",
"Adolphe Menjou"
],
"runtime": 88,
"genre": [
"Drama",
"War"
],
"certificate": "TV_14",
"date": "1974-10-26T10:29:29+05:30",
"actor": "Kirk Douglas",
"id": 49
},
{
"name": "Citizen Kane",
"outline": "Following the death of a publishing tycoon, news reporters scramble to discover the meaning of his final utterance.",
"rating": 8.5,
"director": "Orson Welles",
"year": 1941,
"stars": [
"Orson Welles",
"Joseph Cotten",
"Dorothy Comingore"
],
"runtime": 119,
"genre": [
"Drama",
"Mystery"
],
"certificate": "APPROVED",
"date": "1968-08-28T10:29:29+05:30",
"actor": "Orson Welles",
"id": 50
},
{
"name": "Double Indemnity",
"outline": "An insurance rep lets himself be talked into a murder/insurance fraud scheme that arouses an insurance investigator's suspicions.",
"rating": 8.5,
"director": "Billy Wilder",
"year": 1944,
"stars": [
"Fred MacMurray",
"Barbara Stanwyck",
"Edward G. Robinson"
],
"runtime": 107,
"genre": [
"Crime",
"Drama",
"Film-Noir",
"Thriller"
],
"certificate": "APPROVED",
"date": "1994-03-21T10:29:29+05:30",
"actor": "Fred MacMurray",
"id": 51
},
{
"name": "The Pianist",
"outline": "A Polish Jewish musician struggles to survive the destruction of the Warsaw ghetto of World War II.",
"rating": 8.5,
"director": "Roman Polanski",
"year": 2002,
"stars": [
"Adrien Brody",
"Thomas Kretschmann",
"Frank Finlay"
],
"runtime": 150,
"genre": [
"Biography",
"Drama",
"History",
"War"
],
"certificate": "R",
"date": "1995-10-02T10:29:29+05:30",
"actor": "Adrien Brody",
"id": 52
},
{
"name": "Back to the Future",
"outline": "A teenager is accidentally sent 30 years into the past in a time-traveling DeLorean invented by his friend, Dr. Emmett Brown, and must make sure his high-school-age parents unite in order to save his own existence.",
"rating": 8.5,
"director": "Robert Zemeckis",
"year": 1985,
"stars": [
"Michael J. Fox",
"Christopher Lloyd",
"Lea Thompson"
],
"runtime": 116,
"genre": [
"Adventure",
"Comedy",
"Sci-Fi"
],
"certificate": "PG",
"date": "1991-09-15T10:29:29+05:30",
"actor": "Michael J. Fox",
"id": 53
},
{
"name": "The Departed",
"outline": "An undercover state cop who infiltrated a Mafia clan and a mole in the police force working for the same mob race to track down and identify each other before being exposed to the enemy, after both sides realize their outfit has a rat.",
"rating": 8.5,
"director": "Martin Scorsese",
"year": 2006,
"stars": [
"Leonardo DiCaprio",
"Matt Damon",
"Jack Nicholson"
],
"runtime": 151,
"genre": [
"Crime",
"Thriller"
],
"certificate": "R",
"date": "1972-04-28T10:29:29+05:30",
"actor": "Leonardo DiCaprio",
"id": 54
},
{
"name": "The Shining",
"outline": "A family heads to an isolated hotel for the winter where an evil and spiritual presence influences the father into violence, while his psychic son sees horrific forebodings from the past and of the future.",
"rating": 8.5,
"director": "Stanley Kubrick",
"year": 1980,
"stars": [
"Jack Nicholson",
"Shelley Duvall",
"Danny Lloyd"
],
"runtime": 146,
"genre": [
"Horror",
"Mystery"
],
"certificate": "R",
"date": "2006-07-27T10:29:29+05:30",
"actor": "Jack Nicholson",
"id": 55
},
{
"name": "Vertigo",
"outline": "A retired San Francisco detective suffering from acrophobia investigates the strange activities of an old friend's much-younger wife, all the while becoming dangerously obsessed with her.",
"rating": 8.5,
"director": "Alfred Hitchcock",
"year": 1958,
"stars": [
"James Stewart",
"Kim Novak",
"Barbara Bel Geddes"
],
"runtime": 128,
"genre": [
"Mystery",
"Romance",
"Thriller"
],
"certificate": "APPROVED",
"date": "1993-02-25T10:29:29+05:30",
"actor": "James Stewart",
"id": 56
},
{
"name": "The Lives of Others",
"outline": "In 1984 East Berlin, an agent of the secret police, conducting surveillance on a writer and his lover, finds himself becoming increasingly absorbed by their lives.",
"rating": 8.5,
"director": "Florian Henckel von Donnersmarck",
"year": 2006,
"stars": [
"Ulrich Mühe",
"Martina Gedeck",
"Sebastian Koch"
],
"runtime": 137,
"genre": [
"Drama",
"Thriller"
],
"certificate": "R",
"date": "1996-10-03T10:29:29+05:30",
"actor": "Ulrich Mühe",
"id": 57
},
{
"name": "American Beauty",
"outline": "Lester Burnham, a depressed suburban father in a mid-life crisis, decides to turn his hectic life around after developing an infatuation for his daughter's attractive friend.",
"rating": 8.5,
"director": "Sam Mendes",
"year": 1999,
"stars": [
"Kevin Spacey",
"Annette Bening",
"Thora Birch"
],
"runtime": 122,
"genre": [
"Drama"
],
"certificate": "R",
"date": "1967-03-31T10:29:29+05:30",
"actor": "Kevin Spacey",
"id": 58
},
{
"name": "Toy Story 3",
"outline": "The toys are mistakenly delivered to a day-care center instead of the attic right before Andy leaves for college, and it's up to Woody to convince the other toys that they weren't abandoned and to return home.",
"rating": 8.5,
"director": "Lee Unkrich",
"year": 2010,
"stars": [
"Tom Hanks",
"Tim Allen",
"Joan Cusack"
],
"runtime": 103,
"genre": [
"Animation",
"Adventure",
"Comedy",
"Family",
"Fantasy"
],
"certificate": "G",
"date": "1960-04-11T10:29:29+05:30",
"actor": "Tom Hanks",
"id": 59
},
{
"name": "Aliens",
"outline": "The planet from Alien has been colonized, but contact is lost. This time, the rescue team has impressive firepower, but will it be enough?",
"rating": 8.5,
"director": "James Cameron",
"year": 1986,
"stars": [
"Sigourney Weaver",
"Michael Biehn",
"Carrie Henn"
],
"runtime": 137,
"genre": [
"Action",
"Adventure",
"Sci-Fi",
"Thriller"
],
"certificate": "R",
"date": "1988-09-08T10:29:29+05:30",
"actor": "Sigourney Weaver",
"id": 60
},
{
"name": "The Great Dictator",
"outline": "Dictator Adenoid Hynkel has a doppelganger, a poor but kind Jewish barber living in the slums, who one day is mistaken for Hynkel.",
"rating": 8.5,
"director": "Charles Chaplin",
"year": 1940,
"stars": [
"Charles Chaplin",
"Paulette Goddard",
"Jack Oakie"
],
"runtime": 125,
"genre": [
"Comedy",
"Drama",
"War"
],
"certificate": "APPROVED",
"date": "2010-04-06T10:29:29+05:30",
"actor": "Charles Chaplin",
"id": 61
},
{
"name": "Taxi Driver",
"outline": "A mentally unstable Vietnam war veteran works as a nighttime taxi driver in New York City where the perceived decadence and sleaze feeds his urge to violently lash out, attempting to save a teenage prostitute in the process.",
"rating": 8.5,
"director": "Martin Scorsese",
"year": 1976,
"stars": [
"Robert De Niro",
"Jodie Foster",
"Cybill Shepherd"
],
"runtime": 113,
"genre": [
"Crime",
"Drama"
],
"certificate": "R",
"date": "2012-02-27T10:29:29+05:30",
"actor": "Robert De Niro",
"id": 62
},
{
"name": "WALL·E",
"outline": "In the distant future, a small waste collecting robot inadvertently embarks on a space journey that will ultimately decide the fate of mankind.",
"rating": 8.5,
"director": "Andrew Stanton",
"year": 2008,
"stars": [
"Ben Burtt",
"Elissa Knight",
"Jeff Garlin"
],
"runtime": 98,
"genre": [
"Animation",
"Adventure",
"Family",
"Romance",
"Sci-Fi"
],
"certificate": "G",
"date": "1985-05-21T10:29:29+05:30",
"actor": "Ben Burtt",
"id": 63
},
{
"name": "A Separation",
"outline": "A married couple are faced with a difficult decision - to improve the life of their child by moving to another country or to stay in Iran and look after a deteriorating parent who has Alzheimer's disease.",
"rating": 8.5,
"director": "Asghar Farhadi",
"year": 2011,
"stars": [
"Payman Maadi",
"Leila Hatami",
"Sareh Bayat"
],
"runtime": 123,
"genre": [
"Drama"
],
"certificate": "PG_13",
"date": "2013-11-07T10:29:29+05:30",
"actor": "Payman Maadi",
"id": 64
},
{
"name": "Gladiator",
"outline": "When a Roman general is betrayed and his family murdered by an emperor's corrupt son, he comes to Rome as a gladiator to seek revenge.",
"rating": 8.5,
"director": "Ridley Scott",
"year": 2000,
"stars": [
"Russell Crowe",
"Joaquin Phoenix",
"Connie Nielsen"
],
"runtime": 155,
"genre": [
"Action",
"Adventure",
"Drama"
],
"certificate": "R",
"date": "1981-02-25T10:29:29+05:30",
"actor": "Russell Crowe",
"id": 65
},
{
"name": "Amélie",
"outline": "Amelie, an innocent and naive girl in Paris, with her own sense of justice, decides to help those around her and along the way, discovers love.",
"rating": 8.5,
"director": "Jean-Pierre Jeunet",
"year": 2001,
"stars": [
"Audrey Tautou",
"Mathieu Kassovitz",
"Rufus"
],
"runtime": 122,
"genre": [
"Comedy",
"Romance"
],
"certificate": "R",
"date": "1980-01-24T10:29:29+05:30",
"actor": "Audrey Tautou",
"id": 66
},
{
"name": "The Green Mile",
"outline": "The lives of guards on Death Row are affected by one of their charges: a black man accused of child murder and rape, yet who has a mysterious gift.",
"rating": 8.5,
"director": "Frank Darabont",
"year": 1999,
"stars": [
"Tom Hanks",
"Michael Clarke Duncan",
"David Morse"
],
"runtime": 189,
"genre": [
"Crime",
"Drama",
"Fantasy",
"Mystery"
],
"certificate": "R",
"date": "1974-12-20T10:29:29+05:30",
"actor": "Tom Hanks",
"id": 67
},
{
"name": "A Clockwork Orange",
"outline": "In future Britain, charismatic delinquent Alex DeLarge is jailed and volunteers for an experimental aversion therapy developed by the government in an effort to solve society's crime problem... but not all goes to plan.",
"rating": 8.5,
"director": "Stanley Kubrick",
"year": 1971,
"stars": [
"Malcolm McDowell",
"Patrick Magee",
"Michael Bates"
],
"runtime": 136,
"genre": [
"Crime",
"Drama",
"Sci-Fi"
],
"certificate": "R",
"date": "2006-07-03T10:29:29+05:30",
"actor": "Malcolm McDowell",
"id": 68
},
{
"name": "Lawrence of Arabia",
"outline": "A flamboyant and controversial British military figure and his conflicted loyalties during his World War I service in Arabia.",
"rating": 8.5,
"director": "David Lean",
"year": 1962,
"stars": [
"Peter O'Toole",
"Alec Guinness",
"Anthony Quinn"
],
"runtime": 216,
"genre": [
"Adventure",
"Biography",
"Drama",
"History",
"War"
],
"certificate": "TV_14",
"date": "1992-06-01T10:29:29+05:30",
"actor": "Peter O'Toole",
"id": 69
},
{
"name": "The Prestige",
"outline": "The rivalry between two magicians is exacerbated when one of them performs the ultimate illusion.",
"rating": 8.4,
"director": "Christopher Nolan",
"year": 2006,
"stars": [
"Christian Bale",
"Hugh Jackman",
"Scarlett Johansson"
],
"runtime": 130,
"genre": [
"Drama",
"Mystery",
"Thriller"
],
"certificate": "PG_13",
"date": "1963-10-05T10:29:29+05:30",
"actor": "Christian Bale",
"id": 70
},
{
"name": "Cinema Paradiso",
"outline": "A filmmaker recalls his childhood, when he fell in love with the movies at his village's theater and formed a deep friendship with the theater's projectionist.",
"rating": 8.4,
"director": "Giuseppe Tornatore",
"year": 1988,
"stars": [
"Philippe Noiret",
"Enzo Cannavale",
"Antonella Attili"
],
"runtime": 155,
"genre": [
"Drama"
],
"certificate": "R",
"date": "2000-08-16T10:29:29+05:30",
"actor": "Philippe Noiret",
"id": 71
},
{
"name": "To Kill a Mockingbird",
"outline": "Atticus Finch, a lawyer in the Depression-era South, defends a black man against an undeserved rape charge, and his kids against prejudice.",
"rating": 8.4,
"director": "Robert Mulligan",
"year": 1962,
"stars": [
"Gregory Peck",
"John Megna",
"Frank Overton"
],
"runtime": 129,
"genre": [
"Crime",
"Drama",
"Mystery"
],
"certificate": "APPROVED",
"date": "2013-08-20T10:29:29+05:30",
"actor": "Gregory Peck",
"id": 72
},
{
"name": "Das Boot",
"outline": "The claustrophobic world of a WWII German U-boat; boredom, filth, and sheer terror.",
"rating": 8.4,
"director": "Wolfgang Petersen",
"year": 1981,
"stars": [
"Jürgen Prochnow",
"Herbert Grönemeyer",
"Klaus Wennemann"
],
"runtime": 149,
"genre": [
"Action",
"Adventure",
"Drama",
"History",
"War"
],
"certificate": "UNRATED",
"date": "1971-02-06T10:29:29+05:30",
"actor": "Jürgen Prochnow",
"id": 73
},
{
"name": "The Treasure of the Sierra Madre",
"outline": "Fred Dobbs and Bob Curtin, two Americans searching for work in Mexico, convince an old prospector to help them mine for gold in the Sierra Madre Mountains.",
"rating": 8.4,
"director": "John Huston",
"year": 1948,
"stars": [
"Humphrey Bogart",
"Walter Huston",
"Tim Holt"
],
"runtime": 126,
"genre": [
"Action",
"Adventure",
"Drama",
"Western"
],
"certificate": "TV_PG",
"date": "2007-01-28T10:29:29+05:30",
"actor": "Humphrey Bogart",
"id": 74
},
{
"name": "The Third Man",
"outline": "Pulp novelist Holly Martins travels to shadowy, postwar Vienna, only to find himself investigating the mysterious death of an old friend, black-market opportunist Harry Lime.",
"rating": 8.4,
"director": "Carol Reed",
"year": 1949,
"stars": [
"Orson Welles",
"Joseph Cotten",
"Alida Valli"
],
"runtime": 104,
"genre": [
"Film-Noir",
"Mystery",
"Thriller"
],
"certificate": "APPROVED",
"date": "1978-07-18T10:29:29+05:30",
"actor": "Orson Welles",
"id": 75
},
{
"name": "Reservoir Dogs",
"outline": "After a simple jewelery heist goes terribly wrong, the surviving criminals begin to suspect that one of them is a police informant.",
"rating": 8.4,
"director": "Quentin Tarantino",
"year": 1992,
"stars": [
"Harvey Keitel",
"Tim Roth",
"Michael Madsen"
],
"runtime": 99,
"genre": [
"Crime",
"Thriller"
],
"certificate": "R",
"date": "2005-12-28T10:29:29+05:30",
"actor": "Harvey Keitel",
"id": 76
},
{
"name": "Requiem for a Dream",
"outline": "The drug-induced utopias of four Coney Island individuals are shattered when their addictions become stronger.",
"rating": 8.4,
"director": "Darren Aronofsky",
"year": 2000,
"stars": [
"Ellen Burstyn",
"Jared Leto",
"Jennifer Connelly"
],
"runtime": 102,
"genre": [
"Drama"
],
"certificate": "UNRATED",
"date": "1972-12-28T10:29:29+05:30",
"actor": "Ellen Burstyn",
"id": 77
},
{
"name": "Eternal Sunshine of the Spotless Mind",
"outline": "A couple undergo a procedure to erase each other from their memories when their relationship turns sour, but it is only through the process of loss that they discover what they had to begin with.",
"rating": 8.4,
"director": "Michel Gondry",
"year": 2004,
"stars": [
"Jim Carrey",
"Kate Winslet",
"Tom Wilkinson"
],
"runtime": 108,
"genre": [
"Drama",
"Romance",
"Sci-Fi"
],
"certificate": "R",
"date": "2005-03-14T10:29:29+05:30",
"actor": "Jim Carrey",
"id": 78
},
{
"name": "The Lion King",
"outline": "Tricked into thinking he killed his father, a guilt ridden lion cub flees into exile and abandons his identity as the future King.",
"rating": 8.4,
"director": "Roger Allers",
"year": 1994,
"stars": [
"Rob Minkoff",
"Matthew Broderick",
"Jeremy Irons",
"James Earl Jones"
],
"runtime": 89,
"genre": [
"Animation",
"Adventure",
"Drama",
"Family",
"Musical"
],
"certificate": "G",
"date": "1976-10-25T10:29:29+05:30",
"actor": "Rob Minkoff",
"id": 79
},
{
"name": "Once Upon a Time in America",
"outline": "A former Prohibition-era Jewish gangster returns to the Lower East Side of Manhattan over thirty years later, where he once again must confront the ghosts and regrets of his old life.",
"rating": 8.4,
"director": "Sergio Leone",
"year": 1984,
"stars": [
"Robert De Niro",
"James Woods",
"Elizabeth McGovern"
],
"runtime": 229,
"genre": [
"Crime",
"Drama"
],
"certificate": "R",
"date": "1984-10-13T10:29:29+05:30",
"actor": "Robert De Niro",
"id": 80
},
{
"name": "Bicycle Thieves",
"outline": "A man and his son search for a stolen bicycle vital for his job.",
"rating": 8.4,
"director": "Vittorio De Sica",
"year": 1948,
"stars": [
"Lamberto Maggiorani",
"Enzo Staiola",
"Lianella Carell"
],
"runtime": 93,
"genre": [
"Crime",
"Drama"
],
"certificate": "NOT_RATED",
"date": "2000-05-19T10:29:29+05:30",
"actor": "Lamberto Maggiorani",
"id": 81
},
{
"name": "All About Eve",
"outline": "An ingenue insinuates herself in to the company of an established but aging stage actress and her circle of theater friends.",
"rating": 8.4,
"director": "Joseph L. Mankiewicz",
"year": 1950,
"stars": [
"Bette Davis",
"Anne Baxter",
"George Sanders"
],
"runtime": 138,
"genre": [
"Drama"
],
"certificate": "APPROVED",
"date": "1993-09-20T10:29:29+05:30",
"actor": "Bette Davis",
"id": 82
},
{
"name": "Grave of the Fireflies",
"outline": "A tragic film covering a young boy and his little sister's struggle to survive in Japan during World War II.",
"rating": 8.4,
"director": "Isao Takahata",
"year": 1988,
"stars": [
"Tsutomu Tatsumi",
"Ayano Shiraishi",
"Akemi Yamaguchi"
],
"runtime": 89,
"genre": [
"Animation",
"Drama",
"War"
],
"certificate": "TV_14",
"date": "2006-12-19T10:29:29+05:30",
"actor": "Tsutomu Tatsumi",
"id": 83
},
{
"name": "Singin' in the Rain",
"outline": "A silent film production company and cast make a difficult transition to sound.",
"rating": 8.4,
"director": "Stanley Donen",
"year": 1952,
"stars": [
"Gene Kelly",
"Gene Kelly",
"Donald O'Connor",
"Debbie Reynolds"
],
"runtime": 103,
"genre": [
"Comedy",
"Musical",
"Romance"
],
"certificate": "APPROVED",
"date": "1981-01-01T10:29:29+05:30",
"actor": "Gene Kelly",
"id": 84
},
{
"name": "Witness for the Prosecution",
"outline": "Agatha Christie tale of a man on trial for murder: a trial featuring surprise after surprise.",
"rating": 8.4,
"director": "Billy Wilder",
"year": 1957,
"stars": [
"Tyrone Power",
"Marlene Dietrich",
"Charles Laughton"
],
"runtime": 116,
"genre": [
"Drama",
"Mystery"
],
"certificate": "APPROVED",
"date": "1966-03-12T10:29:29+05:30",
"actor": "Tyrone Power",
"id": 85
},
{
"name": "Braveheart",
"outline": "When his secret bride is executed for assaulting an English soldier whom tried to rape her, a commoner begins a revolt and leads Scottish warriors against the cruel English tyrant who rules Scotland with an iron-fist.",
"rating": 8.4,
"director": "Mel Gibson",
"year": 1995,
"stars": [
"Mel Gibson",
"Sophie Marceau",
"Patrick McGoohan"
],
"runtime": 177,
"genre": [
"Action",
"Biography",
"Drama",
"History",
"War"
],
"certificate": "R",
"date": "1971-10-30T10:29:29+05:30",
"actor": "Mel Gibson",
"id": 86
},
{
"name": "Princess Mononoke",
"outline": "On a journey to find the cure for a Tatarigami's curse, Ashitaka finds himself in the middle of a war between the forest gods and Tatara, a mining colony. In this quest he also meets San, the Mononoke Hime.",
"rating": 8.4,
"director": "Hayao Miyazaki",
"year": 1997,
"stars": [
"Yôji Matsuda",
"Yuriko Ishida",
"Yûko Tanaka"
],
"runtime": 134,
"genre": [
"Animation",
"Adventure",
"Fantasy"
],
"certificate": "TV_14",
"date": "1980-07-16T10:29:29+05:30",
"actor": "Yôji Matsuda",
"id": 87
},
{
"name": "Star Wars: Episode VI - Return of the Jedi",
"outline": "After rescuing Han Solo from the palace of Jabba the Hutt, the Rebels attempt to destroy the Second Death Star, while Luke Skywalker tries to bring his father back to the Light Side of the Force.",
"rating": 8.4,
"director": "Richard Marquand",
"year": 1983,
"stars": [
"Mark Hamill",
"Harrison Ford",
"Carrie Fisher"
],
"runtime": 134,
"genre": [
"Action",
"Adventure",
"Fantasy",
"Sci-Fi"
],
"certificate": "PG",
"date": "1994-11-14T10:29:29+05:30",
"actor": "Mark Hamill",
"id": 88
},
{
"name": "Rashomon",
"outline": "A heinous crime and its aftermath are recalled from differing points of view.",
"rating": 8.4,
"director": "Akira Kurosawa",
"year": 1950,
"stars": [
"Toshirô Mifune",
"Machiko Kyô",
"Masayuki Mori"
],
"runtime": 88,
"genre": [
"Crime",
"Drama"
],
"certificate": "UNRATED",
"date": "1966-07-13T10:29:29+05:30",
"actor": "Toshirô Mifune",
"id": 89
},
{
"name": "Metropolis",
"outline": "In a futuristic city sharply divided between the working class and the city planners, the son of the city's mastermind falls in love with a working class prophet who predicts the coming of a savior to mediate their differences.",
"rating": 8.4,
"director": "Fritz Lang",
"year": 1927,
"stars": [
"Brigitte Helm",
"Alfred Abel",
"Gustav Fröhlich"
],
"runtime": 153,
"genre": [
"Drama",
"Sci-Fi"
],
"certificate": "NOT_RATED",
"date": "1987-01-19T10:29:29+05:30",
"actor": "Brigitte Helm",
"id": 90
},
{
"name": "Oldboy",
"outline": "After being kidnapped and imprisoned for 15 years, Oh Dae-Su is released, only to find that he must find his captor in 5 days.",
"rating": 8.4,
"director": "Chan-wook Park",
"year": 2003,
"stars": [
"Min-sik Choi",
"Ji-tae Yu",
"Hye-jeong Kang"
],
"runtime": 120,
"genre": [
"Drama",
"Mystery",
"Thriller"
],
"certificate": "R",
"date": "1988-12-24T10:29:29+05:30",
"actor": "Min-sik Choi",
"id": 91
},
{
"name": "Monty Python and the Holy Grail",
"outline": "King Arthur and his knights embark on a low-budget search for the Grail, encountering many very silly obstacles.",
"rating": 8.4,
"director": "Terry Gilliam",
"year": 1975,
"stars": [
"Terry Jones",
"Graham Chapman",
"John Cleese",
"Eric Idle"
],
"runtime": 91,
"genre": [
"Adventure",
"Comedy",
"Fantasy"
],
"certificate": "PG",
"date": "1964-09-26T10:29:29+05:30",
"actor": "Terry Jones",
"id": 92
},
{
"name": "Some Like It Hot",
"outline": "When two musicians witness a mob hit, they flee the state in an all female band disguised as women, but further complications set in.",
"rating": 8.4,
"director": "Billy Wilder",
"year": 1959,
"stars": [
"Marilyn Monroe",
"Tony Curtis",
"Jack Lemmon"
],
"runtime": 120,
"genre": [
"Comedy"
],
"certificate": "APPROVED",
"date": "1978-10-07T10:29:29+05:30",
"actor": "Marilyn Monroe",
"id": 93
},
{
"name": "Chinatown",
"outline": "A private detective investigating an adultery case stumbles on to a scheme of murder that has something to do with water.",
"rating": 8.4,
"director": "Roman Polanski",
"year": 1974,
"stars": [
"Jack Nicholson",
"Faye Dunaway",
"John Huston"
],
"runtime": 130,
"genre": [
"Crime",
"Drama",
"Mystery"
],
"certificate": "TV_14",
"date": "2013-10-22T10:29:29+05:30",
"actor": "Jack Nicholson",
"id": 94
},
{
"name": "Full Metal Jacket",
"outline": "A pragmatic U.S. Marine observes the dehumanizing effects the Vietnam War has on his fellow Marine recruits from their brutal boot camp training to the bloody street fighting set in 1968 in Hue, Vietnam.",
"rating": 8.4,
"director": "Stanley Kubrick",
"year": 1987,
"stars": [
"Matthew Modine",
"R. Lee Ermey",
"Vincent D'Onofrio"
],
"runtime": 116,
"genre": [
"Drama",
"War"
],
"certificate": "R",
"date": "1964-12-23T10:29:29+05:30",
"actor": "Matthew Modine",
"id": 95
},
{
"name": "The Apartment",
"outline": "A man tries to rise in his company by letting its executives use his apartment for trysts, but complications and a romance of his own ensue.",
"rating": 8.4,
"director": "Billy Wilder",
"year": 1960,
"stars": [
"Jack Lemmon",
"Shirley MacLaine",
"Fred MacMurray"
],
"runtime": 125,
"genre": [
"Comedy",
"Drama",
"Romance"
],
"certificate": "APPROVED",
"date": "1981-02-09T10:29:29+05:30",
"actor": "Jack Lemmon",
"id": 96
},
{
"name": "Amadeus",
"outline": "The incredible story of Wolfgang Amadeus Mozart, told in flashback by his peer and secret rival Antonio Salieri - now confined to an insane asylum.",
"rating": 8.4,
"director": "Milos Forman",
"year": 1984,
"stars": [
"F. Murray Abraham",
"Tom Hulce",
"Elizabeth Berridge"
],
"runtime": 160,
"genre": [
"Biography",
"Drama",
"Music"
],
"certificate": "R",
"date": "2012-03-04T10:29:29+05:30",
"actor": "F. Murray Abraham",
"id": 97
},
{
"name": "L.A. Confidential",
"outline": "As corruption grows in 1950s LA, three policemen - the straight-laced, the brutal, and the sleazy - investigate a series of murders with their own brand of justice.",
"rating": 8.4,
"director": "Curtis Hanson",
"year": 1997,
"stars": [
"Kevin Spacey",
"Russell Crowe",
"Guy Pearce"
],
"runtime": 138,
"genre": [
"Crime",
"Drama",
"Mystery",
"Thriller"
],
"certificate": "R",
"date": "1982-07-10T10:29:29+05:30",
"actor": "Kevin Spacey",
"id": 98
},
{
"name": "Like Stars on Earth",
"outline": "An eight year old boy is thought to be lazy and a troublemaker, until the new art teacher has the patience and compassion to discover the real problem behind his struggles in school.",
"rating": 8.4,
"director": "Aamir Khan",
"year": 2007,
"stars": [
"Darsheel Safary",
"Aamir Khan",
"Tanay Chheda"
],
"runtime": 165,
"genre": [
"Drama"
],
"certificate": "PG",
"date": "2005-04-11T10:29:29+05:30",
"actor": "Darsheel Safary",
"id": 99
},
{
"name": "The Sting",
"outline": "In 1930s Chicago, a young con man seeking revenge for his murdered partner teams up with a master of the big con to win a fortune from a criminal banker.",
"rating": 8.4,
"director": "George Roy Hill",
"year": 1973,
"stars": [
"Paul Newman",
"Robert Redford",
"Robert Shaw"
],
"runtime": 129,
"genre": [
"Comedy",
"Crime",
"Drama"
],
"certificate": "TV_14",
"date": "1968-04-03T10:29:29+05:30",
"actor": "Paul Newman",
"id": 100
},
{
"name": "Yojimbo",
"outline": "A crafty ronin comes to a town divided by two criminal gangs and decides to play them against each other to free the town.",
"rating": 8.4,
"director": "Akira Kurosawa",
"year": 1961,
"stars": [
"Toshirô Mifune",
"Eijirô Tôno",
"Tatsuya Nakadai"
],
"runtime": 110,
"genre": [
"Action",
"Adventure"
],
"certificate": "TV_MA",
"date": "1981-08-02T10:29:29+05:30",
"actor": "Toshirô Mifune",
"id": 101
},
{
"name": "2001: A Space Odyssey",
"outline": "Humanity finds a mysterious, obviously artificial, object buried beneath the Lunar surface and, with the intelligent computer H.A.L. 9000, sets off on a quest.",
"rating": 8.4,
"director": "Stanley Kubrick",
"year": 1968,
"stars": [
"Keir Dullea",
"Gary Lockwood",
"William Sylvester"
],
"runtime": 141,
"genre": [
"Adventure",
"Mystery",
"Sci-Fi"
],
"certificate": "TV_PG",
"date": "1970-07-02T10:29:29+05:30",
"actor": "Keir Dullea",
"id": 102
},
{
"name": "The Bridge on the River Kwai",
"outline": "After settling his differences with a Japanese PoW camp commander, a British colonel co-operates to oversee his men's construction of a railway bridge for their captors - while oblivious to a plan by the Allies to destroy it.",
"rating": 8.3,
"director": "David Lean",
"year": 1957,
"stars": [
"William Holden",
"Alec Guinness",
"Jack Hawkins"
],
"runtime": 161,
"genre": [
"Adventure",
"Drama",
"History",
"War"
],
"certificate": "APPROVED",
"date": "2001-09-25T10:29:29+05:30",
"actor": "William Holden",
"id": 103
},
{
"name": "Raging Bull",
"outline": "An emotionally self-destructive boxer's journey through life, as the violence and temper that leads him to the top in the ring, destroys his life outside it.",
"rating": 8.3,
"director": "Martin Scorsese",
"year": 1980,
"stars": [
"Robert De Niro",
"Cathy Moriarty",
"Joe Pesci"
],
"runtime": 129,
"genre": [
"Biography",
"Drama",
"Sport"
],
"certificate": "R",
"date": "2000-04-30T10:29:29+05:30",
"actor": "Robert De Niro",
"id": 104
},
{
"name": "Unforgiven",
"outline": "Retired Old West gunslinger William Munny reluctantly takes on one last job, with the help of his old partner and a young man.",
"rating": 8.3,
"director": "Clint Eastwood",
"year": 1992,
"stars": [
"Clint Eastwood",
"Gene Hackman",
"Morgan Freeman"
],
"runtime": 131,
"genre": [
"Western"
],
"certificate": "R",
"date": "2005-11-24T10:29:29+05:30",
"actor": "Clint Eastwood",
"id": 105
},
{
"name": "Mr. Smith Goes to Washington",
"outline": "A naive man is appointed to fill a vacancy in the US Senate. His plans promptly collide with political corruption, but he doesn't back down.",
"rating": 8.3,
"director": "Frank Capra",
"year": 1939,
"stars": [
"James Stewart",
"Jean Arthur",
"Claude Rains"
],
"runtime": 129,
"genre": [
"Drama"
],
"certificate": "APPROVED",
"date": "1962-07-24T10:29:29+05:30",
"actor": "James Stewart",
"id": 106
},
{
"name": "The General",
"outline": "When Union spies steal an engineer's beloved locomotive, he pursues it single handedly and straight through enemy lines.",
"rating": 8.3,
"director": "Clyde Bruckman",
"year": 1926,
"stars": [
"Buster Keaton",
"Buster Keaton",
"Marion Mack",
"Glen Cavender"
],
"runtime": 107,
"genre": [
"Action",
"Adventure",
"Comedy",
"Romance",
"War"
],
"certificate": "UNRATED",
"date": "1983-06-04T10:29:29+05:30",
"actor": "Buster Keaton",
"id": 107
},
{
"name": "Indiana Jones and the Last Crusade",
"outline": "When Dr. Henry Jones Sr. suddenly goes missing while pursuing the Holy Grail, eminent archaeologist Indiana Jones must follow in his father's footsteps and stop the Nazis.",
"rating": 8.3,
"director": "Steven Spielberg",
"year": 1989,
"stars": [
"Harrison Ford",
"Sean Connery",
"Alison Doody"
],
"runtime": 127,
"genre": [
"Action",
"Adventure"
],
"certificate": "United States-E",
"date": "2014-03-19T10:29:29+05:30",
"actor": "Harrison Ford",
"id": 108
},
{
"name": "Batman Begins",
"outline": "After training with his mentor, Batman begins his war on crime to free the crime-ridden Gotham City from corruption that the Scarecrow and the League of Shadows have cast upon it.",
"rating": 8.3,
"director": "Christopher Nolan",
"year": 2005,
"stars": [
"Christian Bale",
"Michael Caine",
"Ken Watanabe"
],
"runtime": 140,
"genre": [
"Action",
"Adventure",
"Crime",
"Drama"
],
"certificate": "PG_13",
"date": "2003-03-20T10:29:29+05:30",
"actor": "Christian Bale",
"id": 109
},
{
"name": "For a Few Dollars More",
"outline": "Two bounty hunters with the same intentions, team up to track down a Western outlaw.",
"rating": 8.3,
"director": "Sergio Leone",
"year": 1965,
"stars": [
"Clint Eastwood",
"Lee Van Cleef",
"Gian Maria Volonté"
],
"runtime": 132,
"genre": [
"Western"
],
"certificate": "APPROVED",
"date": "2006-07-25T10:29:29+05:30",
"actor": "Clint Eastwood",
"id": 110
},
{
"name": "The Great Escape",
"outline": "Allied POWs plan for several hundred of their number to escape from a German camp during World War II.",
"rating": 8.3,
"director": "John Sturges",
"year": 1963,
"stars": [
"Steve McQueen",
"James Garner",
"Richard Attenborough"
],
"runtime": 172,
"genre": [
"Adventure",
"Drama",
"History",
"Thriller",
"War"
],
"certificate": "UNRATED",
"date": "1999-04-14T10:29:29+05:30",
"actor": "Steve McQueen",
"id": 111
},
{
"name": "On the Waterfront",
"outline": "An ex-prize fighter turned longshoreman struggles to stand up to his corrupt union bosses.",
"rating": 8.3,
"director": "Elia Kazan",
"year": 1954,
"stars": [
"Marlon Brando",
"Karl Malden",
"Lee J. Cobb"
],
"runtime": 108,
"genre": [
"Crime",
"Drama"
],
"certificate": "APPROVED",
"date": "1997-02-11T10:29:29+05:30",
"actor": "Marlon Brando",
"id": 112
},
{
"name": "The Kid",
"outline": "The Tramp cares for an abandoned child, but events put that relationship in jeopardy.",
"rating": 8.3,
"director": "Charles Chaplin",
"year": 1921,
"stars": [
"Charles Chaplin",
"Edna Purviance",
"Jackie Coogan"
],
"runtime": 68,
"genre": [
"Comedy",
"Drama",
"Family"
],
"certificate": "NOT_RATED",
"date": "1964-12-04T10:29:29+05:30",
"actor": "Charles Chaplin",
"id": 113
},
{
"name": "Die Hard",
"outline": "John McClane, officer of the NYPD, tries to save wife Holly Gennaro and several others, taken hostage by German terrorist Hans Gruber during a Christmas party at the Nakatomi Plaza in Los Angeles.",
"rating": 8.3,
"director": "John McTiernan",
"year": 1988,
"stars": [
"Bruce Willis",
"Alan Rickman",
"Bonnie Bedelia"
],
"runtime": 131,
"genre": [
"Action",
"Thriller"
],
"certificate": "R",
"date": "1995-05-19T10:29:29+05:30",
"actor": "Bruce Willis",
"id": 114
},
{
"name": "Downfall",
"outline": "Traudl Junge, the final secretary for Adolf Hitler, tells of the Nazi dictator's final days in his Berlin bunker at the end of WWII.",
"rating": 8.3,
"director": "Oliver Hirschbiegel",
"year": 2004,
"stars": [
"Bruno Ganz",
"Alexandra Maria Lara",
"Ulrich Matthes"
],
"runtime": 156,
"genre": [
"Biography",
"Drama",
"History",
"War"
],
"certificate": "R",
"date": "2005-07-08T10:29:29+05:30",
"actor": "Bruno Ganz",
"id": 115
},
{
"name": "Snatch.",
"outline": "Unscrupulous boxing promoters, violent bookmakers, a Russian gangster, incompetent amateur robbers, and supposedly Jewish jewelers fight to track down a priceless stolen diamond.",
"rating": 8.3,
"director": "Guy Ritchie",
"year": 2000,
"stars": [
"Jason Statham",
"Brad Pitt",
"Benicio Del Toro"
],
"runtime": 104,
"genre": [
"Crime",
"Thriller"
],
"certificate": "R",
"date": "1989-12-16T10:29:29+05:30",
"actor": "Jason Statham",
"id": 116
},
{
"name": "The Seventh Seal",
"outline": "A man seeks answers about life, death, and the existence of God as he plays chess against the Grim Reaper during the Black Plague.",
"rating": 8.3,
"director": "Ingmar Bergman",
"year": 1957,
"stars": [
"Max von Sydow",
"Gunnar Björnstrand",
"Bengt Ekerot"
],
"runtime": 96,
"genre": [
"Drama",
"Fantasy"
],
"certificate": "TV_PG",
"date": "1971-09-29T10:29:29+05:30",
"actor": "Max von Sydow",
"id": 117
},
{
"name": "Pan's Labyrinth",
"outline": "In the fascist Spain of 1944, the bookish young stepdaughter of a sadistic army officer escapes into an eerie but captivating fantasy world.",
"rating": 8.3,
"director": "Guillermo del Toro",
"year": 2006,
"stars": [
"Ivana Baquero",
"Ariadna Gil",
"Sergi López"
],
"runtime": 118,
"genre": [
"Drama",
"Fantasy",
"War"
],
"certificate": "R",
"date": "1971-04-20T10:29:29+05:30",
"actor": "Ivana Baquero",
"id": 118
},
{
"name": "Wild Strawberries",
"outline": "After living a life marked by coldness, an aging professor is forced to confront the emptiness of his existence.",
"rating": 8.3,
"director": "Ingmar Bergman",
"year": 1957,
"stars": [
"Victor Sjöström",
"Bibi Andersson",
"Ingrid Thulin"
],
"runtime": 91,
"genre": [
"Drama"
],
"certificate": "UNRATED",
"date": "1959-12-14T10:29:29+05:30",
"actor": "Victor Sjöström",
"id": 119
},
{
"name": "Inglourious Basterds",
"outline": "In Nazi-occupied France during World War II, a plan to assassinate Nazi leaders by a group of Jewish U.S. soldiers coincides with a theatre owner's vengeful plans for the same.",
"rating": 8.3,
"director": "Quentin Tarantino",
"year": 2009,
"stars": [
"Brad Pitt",
"Diane Kruger",
"Eli Roth"
],
"runtime": 153,
"genre": [
"Adventure",
"Drama",
"War"
],
"certificate": "R",
"date": "1960-08-07T10:29:29+05:30",
"actor": "Brad Pitt",
"id": 120
},
{
"name": "Up",
"outline": "By tying thousands of balloons to his home, 78-year-old Carl sets out to fulfill his lifelong dream to see the wilds of South Am
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment