This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

tvrage

0.0.2 • Public • Published

tvrage

Search and retrieve television data from TVRAGE

tvrage = require './tvrage'
 
tv = new tvrage.Proxy()
 
tv.findOne 'alias'(err, show) ->
  console.log 'findOne for "alias":'
  cosnole.log "#{show.name}#{show.network}#{show.status}" # Alias: ABC, Canceled/Ended 
  console.log show.genres # [ 'Action', 'Adventure', 'Drama' ] 
  console.log show.akas[0# { name: 'A Vingadora', country: 'PT' } 
 
tv.fullShowInfo 3548(err, show) ->
  console.log show.seasons.length'seasons of Firefly' # 1 season of Firefly 
 
tv.search 'battlestar'(err, results) ->
  console.log "#{results.length} results for 'battlestar' search" # 5 results... 
  console.log results[0]

See usage.coffee and the tests for more examples.

Readme

Keywords

none

Package Sidebar

Install

npm i tvrage

Weekly Downloads

1

Version

0.0.2

License

none

Last publish

Collaborators

  • tbeseda