imdbapi 1.0.2

dotnet add package imdbapi --version 1.0.2
NuGet\Install-Package imdbapi -Version 1.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="imdbapi" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add imdbapi --version 1.0.2
#r "nuget: imdbapi, 1.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// 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 Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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,156 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. :)