Skip to content

Commit fc5c1a6

Browse files
committed
v1.1.0 > IMDbList
1 parent 6ef39fe commit fc5c1a6

File tree

4 files changed

+10
-58
lines changed

4 files changed

+10
-58
lines changed

IMDbAPI_Client/IMDbAPI_Client.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
<ApplicationIcon>ProjectIcon.ico</ApplicationIcon>
3737
</PropertyGroup>
3838
<ItemGroup>
39-
<Reference Include="IMDbApiLib, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
40-
<HintPath>..\packages\IMDbApiLib.1.0.0\lib\net45\IMDbApiLib.dll</HintPath>
39+
<Reference Include="IMDbApiLib, Version=1.1.0.0, Culture=neutral, processorArchitecture=MSIL">
40+
<HintPath>..\packages\IMDbApiLib.1.1.0\lib\net45\IMDbApiLib.dll</HintPath>
4141
</Reference>
4242
<Reference Include="MetroFramework, Version=1.4.0.0, Culture=neutral, PublicKeyToken=5f91a84759bf584a, processorArchitecture=MSIL">
4343
<HintPath>..\packages\MetroModernUI.1.4.0.0\lib\net\MetroFramework.dll</HintPath>

IMDbAPI_Client/Properties/AssemblyInfo.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
// General Information about an assembly is controlled through the following
55
// set of attributes. Change these attribute values to modify the information
66
// associated with an assembly.
7-
[assembly: AssemblyTitle("IMDbAPI_Client")]
8-
[assembly: AssemblyDescription("")]
7+
[assembly: AssemblyTitle("IMDbAPI Client")]
8+
[assembly: AssemblyDescription("For manage and organize movies and serials")]
99
[assembly: AssemblyConfiguration("")]
10-
[assembly: AssemblyCompany("")]
11-
[assembly: AssemblyProduct("IMDbAPI_Client")]
10+
[assembly: AssemblyCompany("IMDb-API")]
11+
[assembly: AssemblyProduct("IMDbAPI Client")]
1212
[assembly: AssemblyCopyright("Copyright © 2019")]
1313
[assembly: AssemblyTrademark("")]
1414
[assembly: AssemblyCulture("")]
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("1.0.0.0")]
35-
[assembly: AssemblyFileVersion("1.0.0.0")]
34+
[assembly: AssemblyVersion("1.1.0.0")]
35+
[assembly: AssemblyFileVersion("1.1.0.0")]

IMDbAPI_Client/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="IMDbApiLib" version="1.0.0" targetFramework="net472" />
3+
<package id="IMDbApiLib" version="1.1.0" targetFramework="net472" />
44
<package id="MetroModernUI" version="1.4.0.0" targetFramework="net472" />
55
<package id="Newtonsoft.Json" version="12.0.3" targetFramework="net472" />
66
</packages>

README.md

Lines changed: 1 addition & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# IMDb-Api Client Application
2-
The IMDb-API is a web service for receiving movie, serial and cast informations. APIs results is a JSON and includes items such as movie specifications, images, posters, trailers, ratings, Wikipedia page content and more. [IMDb API](https://imdb-api.com)
2+
The IMDb-API is a web service for receiving movie, serial and cast information. APIs results is a JSON and includes items such as movie specifications, images, posters, trailers, ratings, Wikipedia page content and more. [IMDb API](https://imdb-api.com)
33

44
## Nuget
55
Install from Nuget using the command: **Install-Package IMDbApiLib** View more about that here: https://nuget.org/packages/IMDbApiLib
@@ -9,51 +9,3 @@ Install from Nuget using the command: **Install-Package IMDbApiLib** View more a
99

1010
## Screenshot
1111
![IMDb API Client](https://imdb-api.com/img/imdb-api-client.png "IMDb API Client")
12-
13-
## Usage
14-
Usage Examples
15-
```csharp
16-
var apiLib = new ApiLib("API-Key");
17-
18-
// Search
19-
var data = await apiLib.SearchMovieAsync("leon the professional 1994");
20-
21-
// Title Data
22-
var data = await apiLib.TitleAsync("tt0110413");
23-
24-
// Title Data (French Language)
25-
var data = await apiLib.TitleAsync("tt0110413", Language.fr);
26-
27-
// Title Data - Get Full Data
28-
var data = await apiLib.TitleAsync("tt0110413", Language.en, "FullActor,FullCast,Posters,Images,Trailer,Ratings,Wikipedia");
29-
30-
// Report - As PNG File
31-
var data = await apiLib.ReportAsync("tt0110413", Language.en);
32-
33-
// Subtitles (From Subscene)
34-
var data = await apiLib.SubtitlesAsync("tt0110413");
35-
36-
// Images (From IMDb)
37-
var data = await apiLib.ImagesAsync("tt0110413");
38-
39-
// Posters (From TheMovieDb)
40-
var data = await apiLib.PostersAsync("tt0110413");
41-
42-
// Trailer
43-
var data = await apiLib.TrailerAsync("tt0110413");
44-
45-
// ExternalSites (Get Movie or Series TV in all external sites with Identifier and URL)
46-
var data = await apiLib.ExternalSitesAsync("tt0110413");
47-
48-
// Ratings (Get ratings of Movie or Series TV in: IMDb, Metacritic, RottenTommatoes, TheMovieDb, TV.com and FilmAffinity)
49-
var data = await apiLib.RatingsAsync("tt0110413");
50-
51-
// Wikipedia (PlainText and Html)
52-
var data = await apiLib.WikipediaAsync("tt0110413");
53-
54-
// YouTube
55-
var data = await apiLib.YouTubeAsync("8hP9D6kZseM");
56-
57-
// YouTube Playlist
58-
var data = await apiLib.YouTubePlaylistAsync("PLReL099Y5nRd28Yv6c-Am9qURCrLMxBmK");
59-
```

0 commit comments

Comments
 (0)