GitXplorerGitXplorer
V

TheTVDBSharp

public
4 stars
2 forks
2 issues

Commits

List of commits on branch master.
Unverified
b2215a7f8df816a16fc42dd3f7d1214ab6dba9fd

NET Standard 1.1 adjustments

VViktorHofer committed 8 years ago
Unverified
080415cf1860eaf6d9eb727359d64310c121bc58

Changed from nuspec to csproj

VViktorHofer committed 8 years ago
Unverified
7caa334eb19c9cdeadac661ab8b9197de142b860

Project changes. Code cleanup

VViktorHofer committed 8 years ago
Unverified
0d159d0781c47e5550b4e7064edf0a847805c3db

Updated with project fixes

VViktorHofer committed 8 years ago
Unverified
2aa8cdb8881734c58314bbefd00c0b794d6d082d

Refactored solution template to support all .net standard 1.4 based projects :)

VViktorHofer committed 8 years ago
Unverified
9fb67384f0aedf394bbcc20613d761b73609fa5d

Updated assembly infos, included nuspec files, updated gitignore

VViktorHofer committed 10 years ago

README

The README file for this repository.

TheTVDBSharp

Nuget Package: https://www.nuget.org/packages/TheTVDBSharp/

A C# wrapper for the TVDB API.

This API provides an easy-to-use interface to the TVDB API by translating the XML responses into objects. You won't need any knowledge about the API itself to use this library.

To get started there are a few steps you have to undertake.

1) Get an API key.
This is as easy as filling out a form on TheTVDB's webpage. Read the rules and enter your information, you can find your API key under 'Account'.

http://thetvdb.com/?tab=apiregister

2) Optionally: familiarize yourself with the API itself.
You don't have to do this, but some people might want to read up on the, although slightly outdated, API.

http://www.thetvdb.com/wiki/index.php?title=Programmers_API

3) Import the library.
Easiest way is to add nuget package via Nuget Package Manager in Visual Studio. Link at the top.

4) Use it!
You can now use TheTVDBSharp in your own project.

A simple example:

var tvdb = new TVDBManager("mykey"); // Create a new TVDB object with your API key.
var results = tvdb.SearchSeries("Scrubs", Language.English); // Search for a show called scrubs with english as language

foreach(var show in results){
 Console.WriteLine("{0}:\t{1} Episodes", show.Title, show.Episodes.Count); // Print every show's name and amount of episodes
}

Notes
If you encounter any issues or have a suggestion: don't hesitate to open a ticket.
Should you wish to do so, you can contact me at viktor.hofer@outlook.com.