Skip to content

Instantly share code, notes, and snippets.

@sxywu
Last active August 28, 2016 00:22
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 sxywu/8d1b563586bf411383345e95a3418715 to your computer and use it in GitHub Desktop.
Save sxywu/8d1b563586bf411383345e95a3418715 to your computer and use it in GitHub Desktop.
Film Flowers, All
license: gpl-3.0
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.13.1/lodash.js'></script>
<link href='https://fonts.googleapis.com/css?family=Libre+Baskerville:400,700' rel='stylesheet' type='text/css'>
<style>
body {
font-family: "Libre Baskerville";
color: #444;
}
a {
color: #444;
}
.all {
width: 1090px;
margin: auto;
}
.header {
text-align: center;
margin-top: 60px;
}
.header svg {
width: 100%;
height: 500px;
margin: 40px 0;
}
.header h1 {
font-size: 64px;
margin-bottom: 0px;
}
.header .description {
margin: 20px auto;
width: 320px;
font-size: 18px;
}
.content {
position: relative;
}
.content svg {
position: absolute;
width: 900px;
height: 2500px;
top: 0;
}
.years {
position: absolute;
top: 0;
text-align: center;
}
.year {
font-size: 28px;
}
.titles {
position: absolute;
top: 0;
text-align: center;
font-weight: 700;
font-size: 12px;
}
/* blend options taken from visual cinnamon tutorial: http://www.visualcinnamon.com/2016/05/beautiful-color-blending-svg-d3.html */
/*Set isolate on the group element*/
.flower {
isolation: isolate;
cursor: pointer;
}
/*Set blend mode on SVG element: e.g. screen, multiply*/
.flower circle, .legend circle { mix-blend-mode: multiply; }
</style>
</head>
<body>
<div class='all'>
<div class='header'>
<h1>film flowers</h1>
<div class='description'>
<p>top blockbusters of the last decade reimagined as flowers</p>
(<a href='https://twitter.com/sxywu' target='_new'>shirley wu</a>)
</div>
<svg></svg>
</div>
<div class='content'>
<svg></svg>
<div class='years'></div>
<div class='titles'></div>
</div>
</div>
<script>
var strokeColor = '#444';
var flowerSize = 150;
var padding = 20;
var legend = d3.select('.header svg');
var svg = d3.select('.content svg')
.style('left', flowerSize + 'px')
.append('g')
.attr('transform', 'translate(' + [padding, padding] + ')');
var years = d3.select('.years');
var titles = d3.select('.titles')
.style('left', flowerSize + 'px')
.style('padding', padding + 'px');
var petalPaths = [[
'M0 0',
"C50 50 50 100 0 100",
"C-50 100 -50 50 0 0"
],
[
'M-35 0',
'C-25 25 25 25 35 0',
'C50 25 25 75 0 100',
'C-25 75 -50 25 -35 0'
],
[
'M0 0',
'C50 40 50 70 20 100',
'L0 85',
'L-20 100',
'C-50 70 -50 40 0 0'
],
[
'M0 0',
'C50 25 50 75 0 100',
'C-50 75 -50 25 0 0'
]];
var leaf = [
'M0 15',
'C15 40 15 60 0 75',
'C-15 60 -15 40 0 15'
];
var numPetalScale = d3.scaleQuantize()
.range(_.range(5, 15));
var flowerSizeScale = d3.scaleLinear()
.range([.05, .5]);
var petalScale = d3.scaleOrdinal()
.domain(['G', 'PG', 'PG-13', 'R'])
.range(_.range(4));
var petalColors = d3.scaleOrdinal()
.range(['#FFB09E', '#CBF2BD', '#AFE9FF', '#FFC8F0', '#FFF2B4']);
// blur effect taken from visualcinnamon:
// http://www.visualcinnamon.com/2016/05/real-life-motion-effects-d3-visualization.html
var defs = svg.append("defs");
defs.append("filter")
.attr("id", "motionFilter") //Give it a unique ID
.attr("width", "300%") //Increase the width of the filter region to remove blur "boundary"
.attr("x", "-100%") //Make sure the center of the "width" lies in the middle of the element
.append("feGaussianBlur") //Append a filter technique
.attr("in", "SourceGraphic") //Perform the blur on the applied element
.attr("stdDeviation", "8 8"); //Do a blur of 8 standard deviations in the horizontal and vertical direction
/*****************************************************
** get movie data
******************************************************/
d3.json('movies.json', function(movies) {
movies = _.chain(movies)
.map(function(movie) {
movie.year = parseInt(movie.Year);
movie.genres = movie.Genre.split(', ');
movie.rating = parseFloat(movie.imdbRating);
movie.votes = parseInt(movie.imdbVotes.replace(/\,/g, ''));
return movie;
}).sortBy(function(movie) {
return -movie.year
}).value();
// number of petals depending on number of rating votes
var minVotes = d3.min(movies, function(d) {return d.votes});
var maxVotes = d3.max(movies, function(d) {return d.votes});
numPetalScale.domain([minVotes, maxVotes]);
// overall flower size from rating
var minRating = d3.min(movies, function(d) {return d.rating});
var maxRating = d3.max(movies, function(d) {return d.rating});
flowerSizeScale.domain([minRating, maxRating]);
// get the top 4 genres by count
var topGenres = _.chain(movies)
.map('genres').flatten()
.countBy().toPairs()
.sortBy(1).map(0)
.takeRight(4)
.value();
topGenres.push('Other');
petalColors.domain(topGenres);
// get all the years
var allYears = _.chain(movies)
.map('year').uniq().value();
/*****************************************************
** build legend
******************************************************/
var fontSize = 12;
var legendWidth = 1090;
// petal shapes
var legendPetalShapes = legend.append('g')
.attr('transform', 'translate(' + (legendWidth / 2) + ',0)')
.selectAll('g')
.data(['G', 'PG', 'PG-13', 'R'])
.enter().append('g')
.attr('transform', function(d, i) {
var x = i * (flowerSize / 2) - 112.5;
return 'translate(' + [x, 0] + ')scale(0.5)';
});
legendPetalShapes.append('path')
.attr('fill', 'none')
.attr('stroke', strokeColor)
.attr('stroke-width', 4)
.attr('d', function(rating) {
return petalPaths[petalScale(rating)];
});
legendPetalShapes.append('text')
.attr('y', flowerSize)
.attr('text-anchor', 'middle')
.attr('fill', strokeColor)
.style('font-size', fontSize / .5 + 'px')
.text(function(d) {return d});
// petal colors
var legendPetalColors = legend.append('g')
.attr('transform',
'translate(' + [legendWidth / 2, flowerSize * .9] + ')')
.selectAll('g').data(topGenres)
.enter().append('g')
.attr('transform', function(d, i) {
var x = i * (flowerSize / 2) - flowerSize;
return 'translate(' + [x, 0] + ')scale(0.5)';
});
legendPetalColors.append('circle')
.attr('r', flowerSize / 3)
.attr('fill', function(d) {return petalColors(d)})
.style("filter", "url(#motionFilter)");
legendPetalColors.append('text')
.attr('y', flowerSize * .75)
.attr('text-anchor', 'middle')
.attr('fill', strokeColor)
.style('font-size', fontSize / .5 + 'px')
.text(function(d) {return d});
// number of petals in a flower
var legendNumPetals = legend.append('g')
.attr('transform',
'translate(' + [legendWidth / 2, flowerSize * .9 * 2] + ')')
.selectAll('g')
.data(_.times(5, function(i) {
var votes = minVotes + (maxVotes - minVotes) / 4 * i;
return Math.round(votes / 1000) * 1000;
})).enter().append('g')
.attr('transform', function(d, i) {
var x = i * (flowerSize * .6) - (flowerSize * .6 * 2);
return 'translate(' + [x, 0] + ')scale(0.3)';
});
legendNumPetals.selectAll('path')
.data(function(d) {
var numPetals = numPetalScale(d);
var path = petalPaths[petalScale('PG-13')];
return _.times(numPetals, function(i) {
return {
angle: (360/numPetals) * i,
path: path
}
});
}).enter().append('path')
.attr('stroke', strokeColor)
.attr('stroke-width', 2 / .3)
.attr('fill', 'none')
.attr('d', function(d) {return d.path.join(' ')})
.attr('transform', function(d) {
return 'rotate(' + [d.angle] + ')';
});
legendNumPetals.append('text')
.attr('y', flowerSize * 1.25)
.attr('text-anchor', 'middle')
.attr('fill', strokeColor)
.style('font-size', fontSize / .3 + 'px')
.text(function(d, i) {
return d3.format(',')(d / 1000) + 'k' +
(i === 0 ? ' imdb votes' : '');
});
// size of flower
var legendPetalSizes = legend.append('g')
.attr('transform',
'translate(' + [legendWidth / 2, flowerSize * .9 * 3] + ')')
.selectAll('g')
.data(_.times(5, function(i) {
return minRating + (maxRating - minRating) / 4 * i;
})).enter().append('g')
.attr('transform', function(d, i) {
var x = i * (flowerSize * .8) - (flowerSize * .8 * 2);
return 'translate(' + [x, 0] + ')';
});
legendPetalSizes.selectAll('path')
.data(function(rating) {
var numPetals = 5;
var path = petalPaths[petalScale('PG-13')];
return _.times(numPetals, function(i) {
return {
scale: flowerSizeScale(rating),
angle: (360/numPetals) * i,
path: path
}
});
}).enter().append('path')
.attr('stroke', strokeColor)
.attr('stroke-width', function(d) {
return 2 / d.scale;
}).attr('fill', 'none')
.attr('d', function(d) {return d.path.join(' ')})
.attr('transform', function(d) {
return 'rotate(' + [d.angle] + ')scale(' + d.scale + ')';
});
legendPetalSizes.append('text')
.attr('y', flowerSize / 2)
.attr('dy', '.35em')
.attr('text-anchor', 'middle')
.attr('fill', strokeColor)
.style('font-size', fontSize)
.text(function(d, i) {
return d3.format('.1f')(d) + ' / 10';
});
/*****************************************************
** draw all flowers
******************************************************/
// draw flower for each movie
var flowers = svg.selectAll('g.flower')
.data(_.values(movies)).enter().append('g')
.classed('flower', true)
.attr('transform', function(d, i) {
var scale = flowerSizeScale(d.rating);
var x = (i % 5) * flowerSize * 1.25;
var y = Math.floor(i / 5) * flowerSize * 1.5;
return 'translate(' + [x, y] +
')scale(' + scale + ')';
}).on('click', function(d) {
window.open('http://www.imdb.com/title/' + d.imdbID, '_new');
});
// create the data for each flower's colors
flowers.selectAll('circle')
.data(function(d) {
// if there's only one genre, center the circle
var cy = d.genres.length === 1 ? 0 : -flowerSize / 5;
return _.map(d.genres, function(genre, i) {
genre = _.includes(topGenres, genre) ? genre : 'Other';
return {
cy: cy,
scale: flowerSizeScale(d.rating),
angle: (360/d.genres.length) * i,
fill: petalColors(genre)
}
});
}).enter().append('circle')
.attr('cy', function(d) {return d.cy})
.attr('r', flowerSize / 2)
.attr('fill', function(d) {return d.fill})
.attr('transform', function(d) {
var x = flowerSize / 2 / d.scale;
var y = flowerSize / 2 / d.scale;
return 'translate(' + [x, y] +
')rotate(' + d.angle + ')';
}).style("filter", "url(#motionFilter)");
// draw the flower petals
flowers.selectAll('path.petal')
.data(function(d) {
var numPetals = numPetalScale(d.votes);
var path = petalPaths[petalScale(d.Rated)];
return _.times(numPetals, function(i) {
return {
scale: flowerSizeScale(d.rating),
angle: (360/numPetals) * i,
path: path
}
});
}).enter().append('path')
.classed('petal', true)
.attr('stroke', strokeColor)
.attr('stroke-width', function(d) {
return 2 / d.scale;
}).attr('fill', 'none')
.attr('d', function(d) {return d.path.join(' ')})
.attr('transform', function(d) {
var cx = flowerSize / 2 / d.scale;
var cy = flowerSize / 2 / d.scale;
return 'translate(' + [cx, cy] +
')rotate(' + [d.angle] + ')';
});
// draw the leaves
flowers.selectAll('path.leaf')
.data(function(d) {
var leaves = [];
if (d.Seen) {
leaves.push({
scale: flowerSizeScale(d.rating),
angle: -120
});
}
if (d.SeenOnRelease) {
leaves.push({
scale: flowerSizeScale(d.rating),
angle: 120
});
}
return leaves;
}).enter().append('path')
.classed('leaf', true)
.attr('stroke', '#555')
.attr('stroke-width', function(d) {
return 2 / d.scale;
}).attr('fill', '#4AB56D')
.attr('d', leaf.join(' '))
.attr('transform', function(d) {
var cx = flowerSize / 2 / d.scale;
var cy = flowerSize / 2 / d.scale + flowerSize;
return 'translate(' + [cx, cy] +
')rotate(' + [d.angle] + ')';
});
/*****************************************************
** add annotation
******************************************************/
// add the years to titles
years.selectAll('.year')
.data(allYears).enter().append('h1')
.classed('year', true)
.style('margin', 0)
.style('position', 'absolute')
.style('width', flowerSize + 'px')
.style('top', function(d, i) {
return i * flowerSize * 1.5 + flowerSize / 2 + 'px';
})
.text(function(d) {return d});
// finally add the titles
titles.selectAll('.title')
.data(_.values(movies))
.enter().append('div')
.classed('title', true)
.style('position', 'absolute')
.style('padding', '0 ' + padding + 'px')
.style('width', flowerSize * 1.25 - 2 * padding + 'px')
.style('left', function(d, i) {
return (i % 5) * flowerSize * 1.25 + 'px';
}).style('top', function(d, i) {
return Math.floor(i / 5) * flowerSize * 1.5 + flowerSize * 1.1 + 'px';
}).text(function(d) {
return d.Title;
});
});
</script>
</body>
{
"tt0373889":{
"Title":"Harry Potter and the Order of the Phoenix",
"Year":"2007",
"Rated":"PG-13",
"Released":"11 Jul 2007",
"Runtime":"138 min",
"Genre":"Adventure, Family, Fantasy",
"Director":"David Yates",
"Writer":"Michael Goldenberg (screenplay), J.K. Rowling (novel)",
"Actors":"Daniel Radcliffe, Harry Melling, Jason Boyd, Richard Macklin",
"Plot":"With their warning about Lord Voldemort's return scoffed at, Harry and Dumbledore are targeted by the Wizard authorities as an authoritarian bureaucrat slowly seizes power at Hogwarts.",
"Language":"English",
"Country":"UK, USA",
"Awards":"Nominated for 2 BAFTA Film Awards. Another 14 wins & 38 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTM0NTczMTUzOV5BMl5BanBnXkFtZTYwMzIxNTg3._V1_SX300.jpg",
"Metascore":"71",
"imdbRating":"7.5",
"imdbVotes":"354,068",
"imdbID":"tt0373889",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt0449088":{
"Title":"Pirates of the Caribbean: At World's End",
"Year":"2007",
"Rated":"PG-13",
"Released":"25 May 2007",
"Runtime":"169 min",
"Genre":"Action, Adventure, Fantasy",
"Director":"Gore Verbinski",
"Writer":"Ted Elliott, Terry Rossio, Ted Elliott (characters), Terry Rossio (characters), Stuart Beattie (characters), Jay Wolpert (characters)",
"Actors":"Johnny Depp, Geoffrey Rush, Orlando Bloom, Keira Knightley",
"Plot":"Captain Barbossa, Will Turner and Elizabeth Swann must sail off the edge of the map, navigate treachery and betrayal, find Jack Sparrow, and make their final alliances for one last decisive battle.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 2 Oscars. Another 20 wins & 41 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjIyNjkxNzEyMl5BMl5BanBnXkFtZTYwMjc3MDE3._V1_SX300.jpg",
"Metascore":"50",
"imdbRating":"7.1",
"imdbVotes":"470,154",
"imdbID":"tt0449088",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0418279":{
"Title":"Transformers",
"Year":"2007",
"Rated":"PG-13",
"Released":"03 Jul 2007",
"Runtime":"144 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"Michael Bay",
"Writer":"Roberto Orci (screenplay), Alex Kurtzman (screenplay), John Rogers (story), Roberto Orci (story), Alex Kurtzman (story)",
"Actors":"Shia LaBeouf, Megan Fox, Josh Duhamel, Tyrese Gibson",
"Plot":"An ancient struggle between two Cybertronian races, the heroic Autobots and the evil Decepticons, comes to Earth, with a clue to the ultimate power held by a teenager.",
"Language":"English, Spanish",
"Country":"USA",
"Awards":"Nominated for 3 Oscars. Another 19 wins & 40 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTQwNjU5MzUzNl5BMl5BanBnXkFtZTYwMzc1MTI3._V1_SX300.jpg",
"Metascore":"61",
"imdbRating":"7.1",
"imdbVotes":"512,996",
"imdbID":"tt0418279",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt0413267":{
"Title":"Shrek the Third",
"Year":"2007",
"Rated":"PG",
"Released":"18 May 2007",
"Runtime":"93 min",
"Genre":"Animation, Adventure, Comedy",
"Director":"Chris Miller, Raman Hui",
"Writer":"William Steig (book), Andrew Adamson (story), Jeffrey Price (screenplay), Peter S. Seaman (screenplay), Chris Miller (screenplay), Aron Warner (screenplay), Jeff Snow (story)",
"Actors":"Mike Myers, Eddie Murphy, Cameron Diaz, Antonio Banderas",
"Plot":"When his new father-in-law, King Harold falls ill, Shrek is looked at as the heir to the land of Far, Far Away. Not one to give up his beloved swamp, Shrek recruits his friends Donkey and Puss in Boots to install the rebellious Artie as the new king. Princess Fiona, however, rallies a band of royal girlfriends to fend off a coup d'etat by the jilted Prince Charming.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 1 BAFTA Film Award. Another 5 wins & 14 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTMyMjE1Mjc1NF5BMl5BanBnXkFtZTcwMzY0MjEzMw@@._V1_SX300.jpg",
"Metascore":"58",
"imdbRating":"6.1",
"imdbVotes":"211,710",
"imdbID":"tt0413267",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0413300":{
"Title":"Spider-Man 3",
"Year":"2007",
"Rated":"PG-13",
"Released":"04 May 2007",
"Runtime":"139 min",
"Genre":"Action, Adventure, Romance",
"Director":"Sam Raimi",
"Writer":"Sam Raimi (screenplay), Ivan Raimi (screenplay), Alvin Sargent (screenplay), Sam Raimi (screen story), Ivan Raimi (screen story), Stan Lee (Marvel comic book), Steve Ditko (Marvel comic book)",
"Actors":"Tobey Maguire, Kirsten Dunst, James Franco, Thomas Haden Church",
"Plot":"A strange black entity from another world bonds with Peter Parker and causes inner turmoil as he contends with new villains, temptations, and revenge.",
"Language":"English, French",
"Country":"USA",
"Awards":"Nominated for 1 BAFTA Film Award. Another 3 wins & 31 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BYTk3MDljOWQtNGI2My00OTEzLTlhYjQtOTQ4ODM2MzUwY2IwXkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_SX300.jpg",
"Metascore":"59",
"imdbRating":"6.2",
"imdbVotes":"382,132",
"imdbID":"tt0413300",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0910970":{
"Title":"WALL·E",
"Year":"2008",
"Rated":"G",
"Released":"27 Jun 2008",
"Runtime":"98 min",
"Genre":"Animation, Adventure, Family",
"Director":"Andrew Stanton",
"Writer":"Andrew Stanton (original story by), Pete Docter (original story by), Andrew Stanton (screenplay), Jim Reardon (screenplay)",
"Actors":"Ben Burtt, Elissa Knight, Jeff Garlin, Fred Willard",
"Plot":"In the distant future, a small waste-collecting robot inadvertently embarks on a space journey that will ultimately decide the fate of mankind.",
"Language":"English",
"Country":"USA",
"Awards":"Won 1 Oscar. Another 86 wins & 85 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTczOTA3MzY2N15BMl5BanBnXkFtZTcwOTYwNjE2MQ@@._V1_SX300.jpg",
"Metascore":"94",
"imdbRating":"8.4",
"imdbVotes":"720,306",
"imdbID":"tt0910970",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt0448157":{
"Title":"Hancock",
"Year":"2008",
"Rated":"PG-13",
"Released":"02 Jul 2008",
"Runtime":"92 min",
"Genre":"Action, Drama",
"Director":"Peter Berg",
"Writer":"Vincent Ngo, Vince Gilligan",
"Actors":"Will Smith, Charlize Theron, Jason Bateman, Jae Head",
"Plot":"Hancock is a superhero whose ill considered behavior regularly causes damage in the millions. He changes when one person he saves helps him improve his public image.",
"Language":"English, Japanese",
"Country":"USA",
"Awards":"4 wins & 11 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTgyMzc4ODU3NV5BMl5BanBnXkFtZTcwNjk5Mzc1MQ@@._V1_SX300.jpg",
"Metascore":"49",
"imdbRating":"6.4",
"imdbVotes":"343,338",
"imdbID":"tt0448157",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0367882":{
"Title":"Indiana Jones and the Kingdom of the Crystal Skull",
"Year":"2008",
"Rated":"PG-13",
"Released":"22 May 2008",
"Runtime":"122 min",
"Genre":"Action, Adventure, Fantasy",
"Director":"Steven Spielberg",
"Writer":"David Koepp (screenplay), George Lucas (story), Jeff Nathanson (story), George Lucas (characters), Philip Kaufman (characters)",
"Actors":"Harrison Ford, Cate Blanchett, Karen Allen, Shia LaBeouf",
"Plot":"Famed archaeologist/adventurer Dr. Henry \"Indiana\" Jones is called back into action when he becomes entangled in a Soviet plot to uncover the secret behind mysterious artifacts known as the Crystal Skulls.",
"Language":"English, German, Russian",
"Country":"USA",
"Awards":"Nominated for 1 BAFTA Film Award. Another 9 wins & 34 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTIxNDUxNzcyMl5BMl5BanBnXkFtZTcwNTgwOTI3MQ@@._V1_SX300.jpg",
"Metascore":"65",
"imdbRating":"6.2",
"imdbVotes":"333,131",
"imdbID":"tt0367882",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0371746":{
"Title":"Iron Man",
"Year":"2008",
"Rated":"PG-13",
"Released":"02 May 2008",
"Runtime":"126 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"Jon Favreau",
"Writer":"Mark Fergus (screenplay), Hawk Ostby (screenplay), Art Marcum (screenplay), Matt Holloway (screenplay), Stan Lee (characters), Don Heck (characters), Larry Lieber (characters), Jack Kirby (characters)",
"Actors":"Robert Downey Jr., Terrence Howard, Jeff Bridges, Gwyneth Paltrow",
"Plot":"After being held captive in an Afghan cave, a billionaire engineer creates a unique weaponized suit of armor to fight evil.",
"Language":"English, Persian, Urdu, Arabic, Hungarian",
"Country":"USA",
"Awards":"Nominated for 2 Oscars. Another 19 wins & 61 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTczNTI2ODUwOF5BMl5BanBnXkFtZTcwMTU0NTIzMw@@._V1_SX300.jpg",
"Metascore":"79",
"imdbRating":"7.9",
"imdbVotes":"694,275",
"imdbID":"tt0371746",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt0468569":{
"Title":"The Dark Knight",
"Year":"2008",
"Rated":"PG-13",
"Released":"18 Jul 2008",
"Runtime":"152 min",
"Genre":"Action, Crime, Drama",
"Director":"Christopher Nolan",
"Writer":"Jonathan Nolan (screenplay), Christopher Nolan (screenplay), Christopher Nolan (story), David S. Goyer (story), Bob Kane (characters)",
"Actors":"Christian Bale, Heath Ledger, Aaron Eckhart, Michael Caine",
"Plot":"When the menace known as the Joker wreaks havoc and chaos on the people of Gotham, the caped crusader must come to terms with one of the greatest psychological tests of his ability to fight injustice.",
"Language":"English, Mandarin",
"Country":"USA, UK",
"Awards":"Won 2 Oscars. Another 146 wins & 142 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTMxNTMwODM0NF5BMl5BanBnXkFtZTcwODAyMTk2Mw@@._V1_SX300.jpg",
"Metascore":"82",
"imdbRating":"9.0",
"imdbVotes":"1,670,736",
"imdbID":"tt0468569",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt1049413":{
"Title":"Up",
"Year":"2009",
"Rated":"PG",
"Released":"29 May 2009",
"Runtime":"96 min",
"Genre":"Animation, Adventure, Comedy",
"Director":"Pete Docter, Bob Peterson",
"Writer":"Pete Docter (story by), Bob Peterson (story by), Tom McCarthy (story by), Bob Peterson (screenplay), Pete Docter (screenplay)",
"Actors":"Edward Asner, Christopher Plummer, Jordan Nagai, Bob Peterson",
"Plot":"Seventy-eight year old Carl Fredricksen travels to Paradise Falls in his home equipped with balloons, inadvertently taking a young stowaway.",
"Language":"English",
"Country":"USA",
"Awards":"Won 2 Oscars. Another 73 wins & 75 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTk3NDE2NzI4NF5BMl5BanBnXkFtZTgwNzE1MzEyMTE@._V1_SX300.jpg",
"Metascore":"88",
"imdbRating":"8.3",
"imdbVotes":"663,389",
"imdbID":"tt1049413",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt1259571":{
"Title":"The Twilight Saga: New Moon",
"Year":"2009",
"Rated":"PG-13",
"Released":"20 Nov 2009",
"Runtime":"130 min",
"Genre":"Adventure, Drama, Fantasy",
"Director":"Chris Weitz",
"Writer":"Melissa Rosenberg (screenplay), Stephenie Meyer (novel)",
"Actors":"Kristen Stewart, Christina Jastrzembska, Robert Pattinson, Billy Burke",
"Plot":"Edward leaves Bella after an attack that nearly claimed her life, and in her depression she falls into yet another paranormal relationship - this time with werewolf Jacob Black.",
"Language":"English, Italian",
"Country":"USA",
"Awards":"17 wins & 23 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTI3MjE3NDIxNF5BMl5BanBnXkFtZTcwODM3NTY5Mg@@._V1_SX300.jpg",
"Metascore":"44",
"imdbRating":"4.6",
"imdbVotes":"220,512",
"imdbID":"tt1259571",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0417741":{
"Title":"Harry Potter and the Half-Blood Prince",
"Year":"2009",
"Rated":"PG",
"Released":"15 Jul 2009",
"Runtime":"153 min",
"Genre":"Adventure, Family, Fantasy",
"Director":"David Yates",
"Writer":"Steve Kloves (screenplay), J.K. Rowling (novel)",
"Actors":"Daniel Radcliffe, Michael Gambon, Dave Legeno, Elarica Johnson",
"Plot":"As Harry Potter begins his sixth year at Hogwarts, he discovers an old book marked as \"the property of the Half-Blood Prince\" and begins to learn more about Lord Voldemort's dark past.",
"Language":"English",
"Country":"UK, USA",
"Awards":"Nominated for 1 Oscar. Another 8 wins & 30 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNzU3NDg4NTAyNV5BMl5BanBnXkFtZTcwOTg2ODg1Mg@@._V1_SX300.jpg",
"Metascore":"78",
"imdbRating":"7.5",
"imdbVotes":"320,534",
"imdbID":"tt0417741",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt1055369":{
"Title":"Transformers: Revenge of the Fallen",
"Year":"2009",
"Rated":"PG-13",
"Released":"24 Jun 2009",
"Runtime":"150 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"Michael Bay",
"Writer":"Ehren Kruger, Roberto Orci, Alex Kurtzman",
"Actors":"Shia LaBeouf, Megan Fox, Josh Duhamel, Tyrese Gibson",
"Plot":"Sam Witwicky leaves the Autobots behind for a normal life. But when his mind is filled with cryptic symbols, the Decepticons target him and he is dragged back into the Transformers' war.",
"Language":"English, Spanish",
"Country":"USA",
"Awards":"Nominated for 1 Oscar. Another 13 wins & 25 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNjk4OTczOTk0NF5BMl5BanBnXkFtZTcwNjQ0NzMzMw@@._V1_SX300.jpg",
"Metascore":"35",
"imdbRating":"6.0",
"imdbVotes":"322,465",
"imdbID":"tt1055369",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0499549":{
"Title":"Avatar",
"Year":"2009",
"Rated":"PG-13",
"Released":"18 Dec 2009",
"Runtime":"162 min",
"Genre":"Action, Adventure, Fantasy",
"Director":"James Cameron",
"Writer":"James Cameron",
"Actors":"Sam Worthington, Zoe Saldana, Sigourney Weaver, Stephen Lang",
"Plot":"A paraplegic marine dispatched to the moon Pandora on a unique mission becomes torn between following his orders and protecting the world he feels is his home.",
"Language":"English, Spanish",
"Country":"USA, UK",
"Awards":"Won 3 Oscars. Another 80 wins & 121 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTYwOTEwNjAzMl5BMl5BanBnXkFtZTcwODc5MTUwMw@@._V1_SX300.jpg",
"Metascore":"83",
"imdbRating":"7.9",
"imdbVotes":"884,526",
"imdbID":"tt0499549",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt0926084":{
"Title":"Harry Potter and the Deathly Hallows: Part 1",
"Year":"2010",
"Rated":"PG-13",
"Released":"19 Nov 2010",
"Runtime":"146 min",
"Genre":"Adventure, Family, Fantasy",
"Director":"David Yates",
"Writer":"Steve Kloves (screenplay), J.K. Rowling (novel)",
"Actors":"Bill Nighy, Emma Watson, Richard Griffiths, Harry Melling",
"Plot":"As Harry races against time and evil to destroy the Horcruxes, he uncovers the existence of three most powerful objects in the wizarding world: the Deathly Hallows.",
"Language":"English",
"Country":"UK, USA",
"Awards":"Nominated for 2 Oscars. Another 14 wins & 51 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTQ2OTE1Mjk0N15BMl5BanBnXkFtZTcwODE3MDAwNA@@._V1_SX300.jpg",
"Metascore":"65",
"imdbRating":"7.7",
"imdbVotes":"327,090",
"imdbID":"tt0926084",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt1325004":{
"Title":"The Twilight Saga: Eclipse",
"Year":"2010",
"Rated":"PG-13",
"Released":"30 Jun 2010",
"Runtime":"124 min",
"Genre":"Adventure, Drama, Fantasy",
"Director":"David Slade",
"Writer":"Melissa Rosenberg (screenplay), Stephenie Meyer (novel)",
"Actors":"Xavier Samuel, Kristen Stewart, Robert Pattinson, Billy Burke",
"Plot":"As a string of mysterious killings grips Seattle, Bella, whose high school graduation is fast approaching, is forced to choose between her love for vampire Edward and her friendship with werewolf Jacob.",
"Language":"English",
"Country":"USA",
"Awards":"23 wins & 33 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNDMwNjAzNzYwOF5BMl5BanBnXkFtZTcwMDY5NzcyMw@@._V1_SX300.jpg",
"Metascore":"58",
"imdbRating":"4.9",
"imdbVotes":"184,389",
"imdbID":"tt1325004",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt1228705":{
"Title":"Iron Man 2",
"Year":"2010",
"Rated":"PG-13",
"Released":"07 May 2010",
"Runtime":"124 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"Jon Favreau",
"Writer":"Justin Theroux (screenplay), Stan Lee (Marvel comic book), Don Heck (Marvel comic book), Larry Lieber (Marvel comic book), Jack Kirby (Marvel comic book)",
"Actors":"Robert Downey Jr., Gwyneth Paltrow, Don Cheadle, Scarlett Johansson",
"Plot":"With the world now aware of his identity as Iron Man, Tony Stark must contend with both his declining health and a vengeful mad man with ties to his father's legacy.",
"Language":"English, French, Russian",
"Country":"USA",
"Awards":"Nominated for 1 Oscar. Another 7 wins & 40 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTM0MDgwNjMyMl5BMl5BanBnXkFtZTcwNTg3NzAzMw@@._V1_SX300.jpg",
"Metascore":"57",
"imdbRating":"7.0",
"imdbVotes":"521,017",
"imdbID":"tt1228705",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt1014759":{
"Title":"Alice in Wonderland",
"Year":"2010",
"Rated":"PG",
"Released":"05 Mar 2010",
"Runtime":"108 min",
"Genre":"Adventure, Family, Fantasy",
"Director":"Tim Burton",
"Writer":"Linda Woolverton (screenplay), Lewis Carroll (books)",
"Actors":"Johnny Depp, Mia Wasikowska, Helena Bonham Carter, Anne Hathaway",
"Plot":"Nineteen-year-old Alice returns to the magical world from her childhood adventure, where she reunites with her old friends and learns of her true destiny: to end the Red Queen's reign of terror.",
"Language":"English",
"Country":"USA",
"Awards":"Won 2 Oscars. Another 32 wins & 62 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTMwNjAxMTc0Nl5BMl5BanBnXkFtZTcwODc3ODk5Mg@@._V1_SX300.jpg",
"Metascore":"53",
"imdbRating":"6.5",
"imdbVotes":"305,523",
"imdbID":"tt1014759",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt0435761":{
"Title":"Toy Story 3",
"Year":"2010",
"Rated":"G",
"Released":"18 Jun 2010",
"Runtime":"103 min",
"Genre":"Animation, Adventure, Comedy",
"Director":"Lee Unkrich",
"Writer":"John Lasseter (story by), Andrew Stanton (story by), Lee Unkrich (story by), Michael Arndt (screenplay)",
"Actors":"Tom Hanks, Tim Allen, Joan Cusack, Ned Beatty",
"Plot":"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.",
"Language":"English, Spanish",
"Country":"USA",
"Awards":"Won 2 Oscars. Another 57 wins & 89 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTgxOTY4Mjc0MF5BMl5BanBnXkFtZTcwNTA4MDQyMw@@._V1_SX300.jpg",
"Metascore":"92",
"imdbRating":"8.3",
"imdbVotes":"543,855",
"imdbID":"tt0435761",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt1298650":{
"Title":"Pirates of the Caribbean: On Stranger Tides",
"Year":"2011",
"Rated":"PG-13",
"Released":"20 May 2011",
"Runtime":"136 min",
"Genre":"Action, Adventure, Fantasy",
"Director":"Rob Marshall",
"Writer":"Ted Elliott (screenplay), Terry Rossio (screenplay), Ted Elliott (screen story), Terry Rossio (screen story), Ted Elliott (characters), Terry Rossio (characters), Stuart Beattie (characters), Jay Wolpert (characters), Tim Powers (novel)",
"Actors":"Johnny Depp, Penélope Cruz, Geoffrey Rush, Ian McShane",
"Plot":"Jack Sparrow and Barbossa embark on a quest to find the elusive fountain of youth, only to discover that Blackbeard and his daughter are after it too.",
"Language":"English, Spanish",
"Country":"USA, UK",
"Awards":"2 wins & 30 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjE5MjkwODI3Nl5BMl5BanBnXkFtZTcwNjcwMDk4NA@@._V1_SX300.jpg",
"Metascore":"45",
"imdbRating":"6.7",
"imdbVotes":"370,000",
"imdbID":"tt1298650",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt1411697":{
"Title":"The Hangover Part II",
"Year":"2011",
"Rated":"R",
"Released":"26 May 2011",
"Runtime":"102 min",
"Genre":"Comedy",
"Director":"Todd Phillips",
"Writer":"Craig Mazin, Scot Armstrong, Todd Phillips, Jon Lucas (characters), Scott Moore (characters)",
"Actors":"Bradley Cooper, Ed Helms, Zach Galifianakis, Justin Bartha",
"Plot":"Two years after the bachelor party in Las Vegas, Phil, Stu, Alan, and Doug jet to Thailand for Stu's wedding. Stu's plan for a subdued pre-wedding brunch, however, goes seriously awry.",
"Language":"English, Thai",
"Country":"USA",
"Awards":"5 wins & 16 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTM2MTM4MzY2OV5BMl5BanBnXkFtZTcwNjQ3NzI4NA@@._V1_SX300.jpg",
"Metascore":"44",
"imdbRating":"6.5",
"imdbVotes":"375,265",
"imdbID":"tt1411697",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt1324999":{
"Title":"The Twilight Saga: Breaking Dawn - Part 1",
"Year":"2011",
"Rated":"PG-13",
"Released":"18 Nov 2011",
"Runtime":"117 min",
"Genre":"Adventure, Drama, Fantasy",
"Director":"Bill Condon",
"Writer":"Melissa Rosenberg (screenplay), Stephenie Meyer (novel)",
"Actors":"Taylor Lautner, Gil Birmingham, Billy Burke, Sarah Clarke",
"Plot":"The Quileutes close in on expecting parents Edward and Bella, whose unborn child poses a threat to the Wolf Pack and the towns people of Forks.",
"Language":"English, Portuguese",
"Country":"USA",
"Awards":"11 wins & 21 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BODgxNDE0OTAzOF5BMl5BanBnXkFtZTcwNzcwODE2Ng@@._V1_SX300.jpg",
"Metascore":"45",
"imdbRating":"4.9",
"imdbVotes":"182,447",
"imdbID":"tt1324999",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt1399103":{
"Title":"Transformers: Dark of the Moon",
"Year":"2011",
"Rated":"PG-13",
"Released":"29 Jun 2011",
"Runtime":"154 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"Michael Bay",
"Writer":"Ehren Kruger",
"Actors":"Shia LaBeouf, Rosie Huntington-Whiteley, Josh Duhamel, John Turturro",
"Plot":"The Autobots learn of a Cybertronian spacecraft hidden on the moon, and race against the Decepticons to reach it and to learn its secrets.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 3 Oscars. Another 10 wins & 40 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTkwOTY0MTc1NV5BMl5BanBnXkFtZTcwMDQwNjA2NQ@@._V1_SX300.jpg",
"Metascore":"42",
"imdbRating":"6.3",
"imdbVotes":"326,124",
"imdbID":"tt1399103",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt1201607":{
"Title":"Harry Potter and the Deathly Hallows: Part 2",
"Year":"2011",
"Rated":"PG-13",
"Released":"15 Jul 2011",
"Runtime":"130 min",
"Genre":"Adventure, Drama, Fantasy",
"Director":"David Yates",
"Writer":"Steve Kloves (screenplay), J.K. Rowling (novel)",
"Actors":"Ralph Fiennes, Michael Gambon, Alan Rickman, Daniel Radcliffe",
"Plot":"Harry, Ron and Hermione search for Voldemort's remaining Horcruxes in their effort to destroy the Dark Lord as the final battle rages on at Hogwarts.",
"Language":"English",
"Country":"USA, UK",
"Awards":"Nominated for 3 Oscars. Another 46 wins & 87 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTY2MTk3MDQ1N15BMl5BanBnXkFtZTcwMzI4NzA2NQ@@._V1_SX300.jpg",
"Metascore":"87",
"imdbRating":"8.1",
"imdbVotes":"540,933",
"imdbID":"tt1201607",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt0903624":{
"Title":"The Hobbit: An Unexpected Journey",
"Year":"2012",
"Rated":"PG-13",
"Released":"14 Dec 2012",
"Runtime":"169 min",
"Genre":"Adventure, Fantasy",
"Director":"Peter Jackson",
"Writer":"Fran Walsh (screenplay), Philippa Boyens (screenplay), Peter Jackson (screenplay), Guillermo del Toro (screenplay), J.R.R. Tolkien (novel)",
"Actors":"Ian McKellen, Martin Freeman, Richard Armitage, Ken Stott",
"Plot":"A reluctant hobbit, Bilbo Baggins, sets out to the Lonely Mountain with a spirited group of dwarves to reclaim their mountain home - and the gold within it - from the dragon Smaug.",
"Language":"English",
"Country":"USA, New Zealand",
"Awards":"Nominated for 3 Oscars. Another 9 wins & 70 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTcwNTE4MTUxMl5BMl5BanBnXkFtZTcwMDIyODM4OA@@._V1_SX300.jpg",
"Metascore":"58",
"imdbRating":"7.9",
"imdbVotes":"635,935",
"imdbID":"tt0903624",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt1074638":{
"Title":"Skyfall",
"Year":"2012",
"Rated":"PG-13",
"Released":"09 Nov 2012",
"Runtime":"143 min",
"Genre":"Action, Adventure, Thriller",
"Director":"Sam Mendes",
"Writer":"Neal Purvis, Robert Wade, John Logan",
"Actors":"Daniel Craig, Judi Dench, Javier Bardem, Ralph Fiennes",
"Plot":"Bond's loyalty to M is tested when her past comes back to haunt her. Whilst MI6 comes under attack, 007 must track down and destroy the threat, no matter how personal the cost.",
"Language":"English",
"Country":"UK, USA",
"Awards":"Won 2 Oscars. Another 64 wins & 115 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjAyODkzNDgzMF5BMl5BanBnXkFtZTcwMDMxMDI4Nw@@._V1_SX300.jpg",
"Metascore":"81",
"imdbRating":"7.8",
"imdbVotes":"521,217",
"imdbID":"tt1074638",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt1392170":{
"Title":"The Hunger Games",
"Year":"2012",
"Rated":"PG-13",
"Released":"23 Mar 2012",
"Runtime":"142 min",
"Genre":"Adventure, Drama, Sci-Fi",
"Director":"Gary Ross",
"Writer":"Gary Ross (screenplay), Suzanne Collins (screenplay), Billy Ray (screenplay), Suzanne Collins (novel)",
"Actors":"Stanley Tucci, Wes Bentley, Jennifer Lawrence, Willow Shields",
"Plot":"Katniss Everdeen voluntarily takes her younger sister's place in the Hunger Games, a televised competition in which two teenagers from each of the twelve Districts of Panem are chosen at random to fight to the death.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 1 Golden Globe. Another 33 wins & 42 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjA4NDg3NzYxMF5BMl5BanBnXkFtZTcwNTgyNzkyNw@@._V1_SX300.jpg",
"Metascore":"68",
"imdbRating":"7.3",
"imdbVotes":"700,507",
"imdbID":"tt1392170",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt1345836":{
"Title":"The Dark Knight Rises",
"Year":"2012",
"Rated":"PG-13",
"Released":"20 Jul 2012",
"Runtime":"164 min",
"Genre":"Action, Thriller",
"Director":"Christopher Nolan",
"Writer":"Jonathan Nolan (screenplay), Christopher Nolan (screenplay), Christopher Nolan (story), David S. Goyer (story), Bob Kane (characters)",
"Actors":"Christian Bale, Gary Oldman, Tom Hardy, Joseph Gordon-Levitt",
"Plot":"Eight years after the Joker's reign of anarchy, the Dark Knight, with the help of the enigmatic Selina, is forced from his imposed exile to save Gotham City, now on the edge of total annihilation, from the brutal guerrilla terrorist Bane.",
"Language":"English, Arabic",
"Country":"USA, UK",
"Awards":"Nominated for 1 BAFTA Film Award. Another 38 wins & 96 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTk4ODQzNDY3Ml5BMl5BanBnXkFtZTcwODA0NTM4Nw@@._V1_SX300.jpg",
"Metascore":"78",
"imdbRating":"8.5",
"imdbVotes":"1,140,135",
"imdbID":"tt1345836",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt0848228":{
"Title":"The Avengers",
"Year":"2012",
"Rated":"PG-13",
"Released":"04 May 2012",
"Runtime":"143 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"Joss Whedon",
"Writer":"Joss Whedon (screenplay), Zak Penn (story), Joss Whedon (story)",
"Actors":"Robert Downey Jr., Chris Evans, Mark Ruffalo, Chris Hemsworth",
"Plot":"Earth's mightiest heroes must come together and learn to fight as a team if they are to stop the mischievous Loki and his alien army from enslaving humanity.",
"Language":"English, Russian",
"Country":"USA",
"Awards":"Nominated for 1 Oscar. Another 34 wins & 75 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTk2NTI1MTU4N15BMl5BanBnXkFtZTcwODg0OTY0Nw@@._V1_SX300.jpg",
"Metascore":"69",
"imdbRating":"8.1",
"imdbVotes":"991,957",
"imdbID":"tt0848228",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt0770828":{
"Title":"Man of Steel",
"Year":"2013",
"Rated":"PG-13",
"Released":"14 Jun 2013",
"Runtime":"143 min",
"Genre":"Action, Adventure, Fantasy",
"Director":"Zack Snyder",
"Writer":"David S. Goyer (screenplay), David S. Goyer (story), Christopher Nolan (story), Jerry Siegel (Superman created by), Joe Shuster (Superman created by)",
"Actors":"Henry Cavill, Amy Adams, Michael Shannon, Diane Lane",
"Plot":"Clark Kent, one of the last of an extinguished race disguised as an unremarkable human, is forced to reveal his identity when Earth is invaded by an army of survivors who threaten to bring the planet to the brink of destruction.",
"Language":"English",
"Country":"USA, Canada, UK",
"Awards":"7 wins & 42 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjI5OTYzNjI0Ml5BMl5BanBnXkFtZTcwMzM1NDA1OQ@@._V1_SX300.jpg",
"Metascore":"55",
"imdbRating":"7.2",
"imdbVotes":"544,937",
"imdbID":"tt0770828",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt1690953":{
"Title":"Despicable Me 2",
"Year":"2013",
"Rated":"PG",
"Released":"03 Jul 2013",
"Runtime":"98 min",
"Genre":"Animation, Comedy, Family",
"Director":"Pierre Coffin, Chris Renaud",
"Writer":"Cinco Paul, Ken Daurio",
"Actors":"Steve Carell, Kristen Wiig, Benjamin Bratt, Miranda Cosgrove",
"Plot":"When Gru, the world's most super-bad turned super-dad has been recruited by a team of officials to stop lethal muscle and a host of Gru's own, He has to fight back with new gadgetry, cars, and more minion madness.",
"Language":"English, Ukrainian",
"Country":"USA",
"Awards":"Nominated for 2 Oscars. Another 12 wins & 63 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjExNjAyNTcyMF5BMl5BanBnXkFtZTgwODQzMjQ3MDE@._V1_SX300.jpg",
"Metascore":"62",
"imdbRating":"7.5",
"imdbVotes":"286,198",
"imdbID":"tt1690953",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt2294629":{
"Title":"Frozen",
"Year":"2013",
"Rated":"PG",
"Released":"27 Nov 2013",
"Runtime":"102 min",
"Genre":"Animation, Adventure, Comedy",
"Director":"Chris Buck, Jennifer Lee",
"Writer":"Jennifer Lee (screenplay), Hans Christian Andersen (story inspired by \"The Snow Queen\" by), Chris Buck (story by), Jennifer Lee (story by), Shane Morris (story by)",
"Actors":"Kristen Bell, Idina Menzel, Jonathan Groff, Josh Gad",
"Plot":"When the newly crowned Queen Elsa accidentally uses her power to turn things into ice to curse her home in infinite winter, her sister, Anna, teams up with a mountain man, his playful reindeer, and a snowman to change the weather condition.",
"Language":"English, Icelandic",
"Country":"USA",
"Awards":"Won 2 Oscars. Another 72 wins & 57 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTQ1MjQwMTE5OF5BMl5BanBnXkFtZTgwNjk3MTcyMDE@._V1_SX300.jpg",
"Metascore":"74",
"imdbRating":"7.6",
"imdbVotes":"420,574",
"imdbID":"tt2294629",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt1300854":{
"Title":"Iron Man 3",
"Year":"2013",
"Rated":"PG-13",
"Released":"03 May 2013",
"Runtime":"130 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"Shane Black",
"Writer":"Drew Pearce (screenplay), Shane Black (screenplay), Stan Lee (based on the Marvel comic book by), Don Heck (based on the Marvel comic book by), Larry Lieber (based on the Marvel comic book by), Jack Kirby (based on the Marvel comic book by), Warren Ellis (based on the \"Extremis\" mini-series written by), Adi Granov (based on the \"Extremis\" mini-series illustrated by)",
"Actors":"Robert Downey Jr., Gwyneth Paltrow, Don Cheadle, Guy Pearce",
"Plot":"When Tony Stark's world is torn apart by a formidable terrorist called the Mandarin, he starts an odyssey of rebuilding and retribution.",
"Language":"English",
"Country":"USA, China",
"Awards":"Nominated for 1 Oscar. Another 17 wins & 53 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTkzMjEzMjY1M15BMl5BanBnXkFtZTcwNTMxOTYyOQ@@._V1_SX300.jpg",
"Metascore":"62",
"imdbRating":"7.2",
"imdbVotes":"555,804",
"imdbID":"tt1300854",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt1951264":{
"Title":"The Hunger Games: Catching Fire",
"Year":"2013",
"Rated":"PG-13",
"Released":"22 Nov 2013",
"Runtime":"146 min",
"Genre":"Adventure, Sci-Fi, Thriller",
"Director":"Francis Lawrence",
"Writer":"Simon Beaufoy (screenplay), Michael Arndt (screenplay), Suzanne Collins (novel)",
"Actors":"Jennifer Lawrence, Liam Hemsworth, Jack Quaid, Taylor St. Clair",
"Plot":"Katniss Everdeen and Peeta Mellark become targets of the Capitol after their victory in the 74th Hunger Games sparks a rebellion in the Districts of Panem.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 1 Golden Globe. Another 21 wins & 59 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTAyMjQ3OTAxMzNeQTJeQWpwZ15BbWU4MDU0NzA1MzAx._V1_SX300.jpg",
"Metascore":"76",
"imdbRating":"7.6",
"imdbVotes":"497,311",
"imdbID":"tt1951264",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt1490017":{
"Title":"The Lego Movie",
"Year":"2014",
"Rated":"PG",
"Released":"07 Feb 2014",
"Runtime":"100 min",
"Genre":"Animation, Action, Adventure",
"Director":"Phil Lord, Christopher Miller",
"Writer":"Phil Lord (screenplay), Christopher Miller (screenplay), Dan Hageman (story), Kevin Hageman (story), Phil Lord (story), Christopher Miller (story)",
"Actors":"Will Arnett, Elizabeth Banks, Craig Berry, Alison Brie",
"Plot":"An ordinary Lego construction worker, thought to be the prophesied 'Special', is recruited to join a quest to stop an evil tyrant from gluing the Lego universe into eternal stasis.",
"Language":"English",
"Country":"Australia, USA, Denmark",
"Awards":"Nominated for 1 Oscar. Another 69 wins & 59 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTg4MDk1ODExN15BMl5BanBnXkFtZTgwNzIyNjg3MDE@._V1_SX300.jpg",
"Metascore":"83",
"imdbRating":"7.8",
"imdbVotes":"245,926",
"imdbID":"tt1490017",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt1843866":{
"Title":"Captain America: The Winter Soldier",
"Year":"2014",
"Rated":"PG-13",
"Released":"04 Apr 2014",
"Runtime":"136 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"Anthony Russo, Joe Russo",
"Writer":"Christopher Markus (screenplay), Stephen McFeely (screenplay), Joe Simon (based on the Marvel comic by), Jack Kirby (based on the Marvel comic by)",
"Actors":"Chris Evans, Samuel L. Jackson, Scarlett Johansson, Robert Redford",
"Plot":"As Steve Rogers struggles to embrace his role in the modern world, he teams up with a fellow Avenger and S.H.I.E.L.D agent, Black Widow, to battle a new threat from history: an assassin known as the Winter Soldier.",
"Language":"English, French",
"Country":"USA",
"Awards":"Nominated for 1 Oscar. Another 5 wins & 49 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMzA2NDkwODAwM15BMl5BanBnXkFtZTgwODk5MTgzMTE@._V1_SX300.jpg",
"Metascore":"70",
"imdbRating":"7.8",
"imdbVotes":"494,587",
"imdbID":"tt1843866",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt2015381":{
"Title":"Guardians of the Galaxy",
"Year":"2014",
"Rated":"PG-13",
"Released":"01 Aug 2014",
"Runtime":"121 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"James Gunn",
"Writer":"James Gunn, Nicole Perlman, Dan Abnett (based on the Marvel comic book by), Andy Lanning (based on the Marvel comic book by)",
"Actors":"Chris Pratt, Zoe Saldana, Dave Bautista, Vin Diesel",
"Plot":"A group of intergalactic criminals are forced to work together to stop a fanatical warrior from taking control of the universe.",
"Language":"English",
"Country":"USA, UK",
"Awards":"Nominated for 2 Oscars. Another 48 wins & 92 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTAwMjU5OTgxNjZeQTJeQWpwZ15BbWU4MDUxNDYxODEx._V1_SX300.jpg",
"Metascore":"76",
"imdbRating":"8.1",
"imdbVotes":"681,776",
"imdbID":"tt2015381",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": false
},
"tt1951265":{
"Title":"The Hunger Games: Mockingjay - Part 1",
"Year":"2014",
"Rated":"PG-13",
"Released":"21 Nov 2014",
"Runtime":"123 min",
"Genre":"Adventure, Sci-Fi, Thriller",
"Director":"Francis Lawrence",
"Writer":"Peter Craig (screenplay), Danny Strong (screenplay), Suzanne Collins (adaptation), Suzanne Collins (novel)",
"Actors":"Jennifer Lawrence, Josh Hutcherson, Liam Hemsworth, Woody Harrelson",
"Plot":"Katniss Everdeen is in District 13 after she shatters the games forever. Under the leadership of President Coin and the advice of her trusted friends, Katniss spreads her wings as she fights to save Peeta and a nation moved by her courage.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 1 Golden Globe. Another 15 wins & 26 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTcxNDI2NDAzNl5BMl5BanBnXkFtZTgwODM3MTc2MjE@._V1_SX300.jpg",
"Metascore":"64",
"imdbRating":"6.7",
"imdbVotes":"304,982",
"imdbID":"tt1951265",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt2179136":{
"Title":"American Sniper",
"Year":"2014",
"Rated":"R",
"Released":"16 Jan 2015",
"Runtime":"133 min",
"Genre":"Action, Biography, Drama",
"Director":"Clint Eastwood",
"Writer":"Jason Hall, Chris Kyle (book), Scott McEwen (book), Jim DeFelice (book)",
"Actors":"Bradley Cooper, Kyle Gallner, Cole Konis, Ben Reed",
"Plot":"Navy S.E.A.L. sniper Chris Kyle's pinpoint accuracy saves countless lives on the battlefield and turns him into a legend. Back home to his wife and kids after four tours of duty, however, Chris finds that it is the war he can't leave behind.",
"Language":"English, Arabic",
"Country":"USA",
"Awards":"Won 1 Oscar. Another 18 wins & 38 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTkxNzI3ODI4Nl5BMl5BanBnXkFtZTgwMjkwMjY4MjE@._V1_SX300.jpg",
"Metascore":"72",
"imdbRating":"7.3",
"imdbVotes":"323,814",
"imdbID":"tt2179136",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt2820852":{
"Title":"Furious 7",
"Year":"2015",
"Rated":"PG-13",
"Released":"03 Apr 2015",
"Runtime":"137 min",
"Genre":"Action, Crime, Thriller",
"Director":"James Wan",
"Writer":"Chris Morgan, Gary Scott Thompson (characters)",
"Actors":"Vin Diesel, Paul Walker, Jason Statham, Michelle Rodriguez",
"Plot":"Deckard Shaw seeks revenge against Dominic Toretto and his family for his comatose brother.",
"Language":"English",
"Country":"USA, Japan",
"Awards":"Nominated for 1 Golden Globe. Another 20 wins & 25 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTQxOTA2NDUzOV5BMl5BanBnXkFtZTgwNzY2MTMxMzE@._V1_SX300.jpg",
"Metascore":"67",
"imdbRating":"7.3",
"imdbVotes":"277,247",
"imdbID":"tt2820852",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt2096673":{
"Title":"Inside Out",
"Year":"2015",
"Rated":"PG",
"Released":"19 Jun 2015",
"Runtime":"95 min",
"Genre":"Animation, Adventure, Comedy",
"Director":"Pete Docter, Ronnie Del Carmen",
"Writer":"Pete Docter (original story by), Ronnie Del Carmen (original story by), Pete Docter (screenplay), Meg LeFauve (screenplay), Josh Cooley (screenplay), Michael Arndt (additional story material by), Bill Hader (additional dialogue by), Amy Poehler (additional dialogue by), Simon Rich (additional story material by)",
"Actors":"Amy Poehler, Phyllis Smith, Richard Kind, Bill Hader",
"Plot":"After young Riley is uprooted from her Midwest life and moved to San Francisco, her emotions - Joy, Fear, Anger, Disgust and Sadness - conflict on how best to navigate a new city, house, and school.",
"Language":"English",
"Country":"USA",
"Awards":"Won 1 Oscar. Another 83 wins & 96 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BOTgxMDQwMDk0OF5BMl5BanBnXkFtZTgwNjU5OTg2NDE@._V1_SX300.jpg",
"Metascore":"94",
"imdbRating":"8.3",
"imdbVotes":"342,328",
"imdbID":"tt2096673",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt2395427":{
"Title":"Avengers: Age of Ultron",
"Year":"2015",
"Rated":"PG-13",
"Released":"01 May 2015",
"Runtime":"141 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"Joss Whedon",
"Writer":"Joss Whedon, Stan Lee (based on the Marvel comics by), Jack Kirby (based on the Marvel comics by)",
"Actors":"Robert Downey Jr., Chris Hemsworth, Mark Ruffalo, Chris Evans",
"Plot":"When Tony Stark and Bruce Banner try to jump-start a dormant peacekeeping program called Ultron, things go horribly wrong and it's up to Earth's Mightiest Heroes to stop the villainous Ultron from enacting his terrible plans.",
"Language":"English",
"Country":"USA",
"Awards":"3 wins & 40 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTM4OGJmNWMtOTM4Ni00NTE3LTg3MDItZmQxYjc4N2JhNmUxXkEyXkFqcGdeQXVyNTgzMDMzMTg@._V1_SX300.jpg",
"Metascore":"66",
"imdbRating":"7.5",
"imdbVotes":"459,751",
"imdbID":"tt2395427",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt0369610":{
"Title":"Jurassic World",
"Year":"2015",
"Rated":"PG-13",
"Released":"12 Jun 2015",
"Runtime":"124 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"Colin Trevorrow",
"Writer":"Rick Jaffa (screenplay), Amanda Silver (screenplay), Colin Trevorrow (screenplay), Derek Connolly (screenplay), Rick Jaffa (story), Amanda Silver (story), Michael Crichton (characters)",
"Actors":"Chris Pratt, Bryce Dallas Howard, Irrfan Khan, Vincent D'Onofrio",
"Plot":"A new theme park is built on the original site of Jurassic Park. Everything is going well until the park's newest attraction - a genetically modified giant stealth killing machine - escapes containment and goes on a killing spree.",
"Language":"English",
"Country":"USA",
"Awards":"5 wins & 52 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTQ5MTE0MTk3Nl5BMl5BanBnXkFtZTgwMjczMzk2NTE@._V1_SX300.jpg",
"Metascore":"59",
"imdbRating":"7.0",
"imdbVotes":"416,573",
"imdbID":"tt0369610",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt2488496":{
"Title":"Star Wars: The Force Awakens",
"Year":"2015",
"Rated":"PG-13",
"Released":"18 Dec 2015",
"Runtime":"136 min",
"Genre":"Action, Adventure, Fantasy",
"Director":"J.J. Abrams",
"Writer":"Lawrence Kasdan, J.J. Abrams, Michael Arndt, George Lucas (based on characters created by)",
"Actors":"Harrison Ford, Mark Hamill, Carrie Fisher, Adam Driver",
"Plot":"Three decades after the defeat of the Galactic Empire, a new threat arises. The First Order attempts to rule the galaxy and only a ragtag group of heroes can stop them, along with the help of the Resistance.",
"Language":"English",
"Country":"USA",
"Awards":"Nominated for 5 Oscars. Another 43 wins & 106 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BOTAzODEzNDAzMl5BMl5BanBnXkFtZTgwMDU1MTgzNzE@._V1_SX300.jpg",
"Metascore":"81",
"imdbRating":"8.2",
"imdbVotes":"561,678",
"imdbID":"tt2488496",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt2709768":{
"Title":"The Secret Life of Pets",
"Year":"2016",
"Rated":"PG",
"Released":"08 Jul 2016",
"Runtime":"87 min",
"Genre":"Animation, Comedy, Family",
"Director":"Yarrow Cheney, Chris Renaud",
"Writer":"Cinco Paul, Ken Daurio, Brian Lynch, Simon Rich (additional characters created by)",
"Actors":"Louis C.K., Eric Stonestreet, Kevin Hart, Jenny Slate",
"Plot":"A terrier named Max's quiet life is upended when his owner takes in Duke, a stray, who Max instantly dislikes.",
"Language":"English",
"Country":"Japan, USA",
"Awards":"N/A",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjIzMzA1OTkzNV5BMl5BanBnXkFtZTgwODE3MjM4NzE@._V1_SX300.jpg",
"Metascore":"61",
"imdbRating":"6.8",
"imdbVotes":"16,794",
"imdbID":"tt2709768",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt3040964":{
"Title":"The Jungle Book",
"Year":"2016",
"Rated":"PG",
"Released":"15 Apr 2016",
"Runtime":"106 min",
"Genre":"Adventure, Drama, Family",
"Director":"Jon Favreau",
"Writer":"Justin Marks (screenplay), Rudyard Kipling (book)",
"Actors":"Neel Sethi, Bill Murray, Ben Kingsley, Idris Elba",
"Plot":"After a threat from the tiger Shere Khan forces him to flee the jungle, a man-cub named Mowgli embarks on a journey of self discovery with the help of panther, Bagheera, and free spirited bear, Baloo.",
"Language":"English",
"Country":"UK, USA",
"Awards":"2 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMTc3NTUzNTI4MV5BMl5BanBnXkFtZTgwNjU0NjU5NzE@._V1_SX300.jpg",
"Metascore":"77",
"imdbRating":"7.8",
"imdbVotes":"96,221",
"imdbID":"tt3040964",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt1431045":{
"Title":"Deadpool",
"Year":"2016",
"Rated":"R",
"Released":"12 Feb 2016",
"Runtime":"108 min",
"Genre":"Action, Adventure, Comedy",
"Director":"Tim Miller",
"Writer":"Rhett Reese, Paul Wernick, Fabian Nicieza (character), Rob Liefeld (character)",
"Actors":"Ryan Reynolds, Karan Soni, Ed Skrein, Michael Benyaer",
"Plot":"A former Special Forces operative turned mercenary is subjected to a rogue experiment that leaves him with accelerated healing powers, adopting the alter ego Deadpool.",
"Language":"English",
"Country":"USA",
"Awards":"2 wins & 10 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjQyODg5Njc4N15BMl5BanBnXkFtZTgwMzExMjE3NzE@._V1_SX300.jpg",
"Metascore":"65",
"imdbRating":"8.1",
"imdbVotes":"467,718",
"imdbID":"tt1431045",
"Type":"movie",
"Response":"True",
"Seen": false,
"SeenOnRelease": false
},
"tt3498820":{
"Title":"Captain America: Civil War",
"Year":"2016",
"Rated":"PG-13",
"Released":"06 May 2016",
"Runtime":"147 min",
"Genre":"Action, Adventure, Sci-Fi",
"Director":"Anthony Russo, Joe Russo",
"Writer":"Christopher Markus (screenplay), Stephen McFeely (screenplay), Joe Simon (based on the Marvel comics by), Jack Kirby (based on the Marvel comics by)",
"Actors":"Chris Evans, Robert Downey Jr., Scarlett Johansson, Sebastian Stan",
"Plot":"Political interference in the Avengers' activities causes a rift between former allies Captain America and Iron Man.",
"Language":"English, German, Xhosa, Russian, Romanian",
"Country":"USA, Germany",
"Awards":"11 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BMjQ0MTgyNjAxMV5BMl5BanBnXkFtZTgwNjUzMDkyODE@._V1_SX300.jpg",
"Metascore":"75",
"imdbRating":"8.2",
"imdbVotes":"264,088",
"imdbID":"tt3498820",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
},
"tt2277860":{
"Title":"Finding Dory",
"Year":"2016",
"Rated":"PG",
"Released":"17 Jun 2016",
"Runtime":"97 min",
"Genre":"Animation, Adventure, Comedy",
"Director":"Andrew Stanton, Angus MacLane",
"Writer":"Andrew Stanton (original story by), Andrew Stanton (screenplay), Victoria Strouse (screenplay), Bob Peterson (additional screenplay material by), Angus MacLane (additional story material by)",
"Actors":"Ellen DeGeneres, Albert Brooks, Ed O'Neill, Kaitlin Olson",
"Plot":"The friendly but forgetful blue tang fish begins a search for her long-lost parents, and everyone learns a few things about the real meaning of family along the way.",
"Language":"English, Indonesian",
"Country":"USA",
"Awards":"2 nominations.",
"Poster":"http://ia.media-imdb.com/images/M/MV5BNzg4MjM2NDQ4MV5BMl5BanBnXkFtZTgwMzk3MTgyODE@._V1_SX300.jpg",
"Metascore":"77",
"imdbRating":"7.8",
"imdbVotes":"51,956",
"imdbID":"tt2277860",
"Type":"movie",
"Response":"True",
"Seen": true,
"SeenOnRelease": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment