IMDb Scraper is a simple library for extracting a movie title and year from a IMDb ID.
Installation (.NET Framework 4.6):
Install-Package ImdbScraper
Example:
var repository = new Repository(); var result = repository.GetMovie(87332); Console.WriteLine(result.ToString());