imdbapi 1.0.2
dotnet add package imdbapi --version 1.0.2
NuGet\Install-Package imdbapi -Version 1.0.2
<PackageReference Include="imdbapi" Version="1.0.2" />
paket add imdbapi --version 1.0.2
#r "nuget: imdbapi, 1.0.2"
// Install imdbapi as a Cake Addin #addin nuget:?package=imdbapi&version=1.0.2 // Install imdbapi as a Cake Tool #tool nuget:?package=imdbapi&version=1.0.2
A simple imdb APi.
STILL IN BETA. :)
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. |
-
- HtmlAgilityPack (>= 1.4.9)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.2 | 2,196 | 6/7/2015 |
The first version.
STILL IN BETA. :)
This version contains:
Title (String)
AgeRate (String)
Duration (String)
Genre (List<string>)
Release Year (String)
Description (String)
Director (String)
Star Rate (String)
After installing call the .dll file.
using using imdbAPI;
Create instance of class:
imdb test = new imdb("tt1964418");
where 'tt1964418' is the movie id on IMDB link (http://www.imdb.com/title/tt1964418/)
label1.text = test.imdbTitle();
______________________________________________________
AND as for Genre it return a string.
This is the sample:
imdb im = new imdb("tt1964418");
for (int i = 0; i < im.imdbGenre().Count; i++)
{
label1.Text += im.imdbGenre()[i] + "\n";
}
NOTE: When this class return the genre it will take some time, so be patient.
Thank you. :)