1.0.3 • Published 9 years ago

tunein_scraper v1.0.3

Weekly downloads
1
License
MIT
Repository
-
Last release
9 years ago

Tunein Radio npm module

Everything returns a promise.

tunein.searchForShow("search terms")

Searches for a specified show. Returns a list of shows.

tunein.getEpisodesOfShow(show)

Specify a show, and it will return a list of episodes of that show.

tunein.getStreamData(episodes0)

Specify an episode to get the location of the stream for the specified episode.

Coffeescript Example

tunein.searchForShow("stuff you should know").then (show) ->
  console.log show[0].name

  tunein.getEpisodesOfShow(show[0]).then (episodes) ->
    console.log episodes[0].name

    tunein.getStreamData(episodes[0]).then (stream) ->
      console.log stream
1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago