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());

Update 2023-06-18: The scraper now requires .NET 7.0, and it also downloads the movie rating from imdb.com.


Leave a Reply