npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

hpv-tvdb

v0.0.9

Published

Node.js Client für die thetvdb.com-Api. Der Client liefert die (deutschen) Daten als JSON

Downloads

3

Readme

TheTvDB-Client

Client (für den Eigenbedarf entwickelt), der deutsche Informationen von thetvdb.com bezieht und diese in Form von JSON bereitstellt. Der Client stellt Methoden für den Zugriff auf die thetvdb.com-Api bereit. Für die Verwendung wird ein API-Key von thetvdb.com benötigt.

Installation

npm install hpv-tvdb

Das Modul verwendet request für die Aufrufe der tvdb-Api und xml2js für die Konvertierung der XML-Dateien

Verwendung

var tvdbc = require('hpv-tvdb'),
    client = new tvdbc.TvDbClient(%apikey),
    callback = function(err, result) {
	    console.log(result);
    };
client.getSeriesByTitle('Bones', callback); 
// SerienId entnehmen
client.getSeasonsBySeriesId('75682', callback);

%apikey = von thetvdb.com bereitgestellter API-Key

API

Alle Aufrufe verlangen eine callback-Funktion in der Form function(error, result)

Suche über Titel

Aufruf

getSeriesByTitle(%titel, callback)

Result

Array von Serieninfo-Objekten

SerienInfo-Objekt

[ 
   {
		name: Serienname,
		alias: Alias-Name,
		imageurl: URL zum Banner,
		id: Serien-ID,
		language: Sprache,
		overview: Serienübersicht,
		imdbid: ID auf imdb.com
     }      
]

Alle Serieninformation über Serien-Id

Aufruf

getSeasonsBySeriesId(%Serien-Id, callback)

Result

Ein Serienobjekt mit allen Staffeln und Episoden. Enthält alle nötigen Daten ausser den Staffelbildern.

Serien-Objekt

    {
        series: {
	    	name: Serienname,
			id:  Serien-Id,
			overview: Übersicht,
			actors: [Array von Schuspielernamen],
			genre: [Array von Genres],
			rating: Einstufung,
			network: TV-Sender,
			language: Sprache,
			firstaired: Erstaustrahlung
        },
		seasons: {
			'%Staffelnummer': {
				seasonid: ID der Staffel,
				seasonnumber: Staffelnummer,
				episodes: [
					{
						name: Titel der Episode,
						number: Nummer der Folge,
						id: ID der Episode,
						overview: Inhalt der Episode,
						directors: [Array von Regiseuren],
						writers: [Array von Drehbuchautoren],   
						firstaired: Erstausstrahlungsdatum,
						imageurl: URL zum Episodenbild, 
						gueststars: [Array von Gaststars],
						language: Sprache der Episode (de)
					}
				]
			}
		}
	}                   

%Staffelnummer = '1', '2,' ...

Alle Bild-Urls einer Serie

Aufruf

getBannersBySeriesId(%Serien-Id, callback)

Result

Ein Objekt strukturiert nach Bildarten (bannertype)

{
	'%Bildart' : {
		url: Url zum Bild, 
		language: Sprache
	}
}          

Mögliche Bildarten sind:

  • fanart
  • poster
  • season
  • series

Schauspielerinformationen abrufen

Aufruf

getActorsBySeriesId(%Serien-Id, callback)

Result

Array von Bildobjekten

Bildobjekt

[
	{
		name: Schauspielername,
		role: Rollenname,
		id: Schauspieler-Id,
		imageurl: Url zum Bild des Schauspielers
	}
]        

Bild abrufen und speichern

Aufruf

getImageAndSave(url, filename, callback)

Übergeben werden die URL des Bildes (evtl. aus getBannersBySeriesId), der gewünschte Dateiname und der obligatorische callback

Der Client verfügt noch über weitere Funktionen, die aber hauptsächlich intern verwendet werden. Bei Interesse einfach in die Source schauen.