# tunein_scraper

> Scraper for tunein radio

Latest version **1.0.3** (published 2015-10-17) · MIT license · 0 weekly downloads

## Install

```sh
npm install tunein_scraper
pnpm add tunein_scraper
yarn add tunein_scraper
bun add tunein_scraper
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.3 |
| Published | 2015-10-17 |
| First published | 2015-10-17 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| Author | Ryan Gaus |
| Maintainers | 1egoman |

## Links

- npm: https://www.npmjs.com/package/tunein_scraper
- npm.io page: https://npm.io/package/tunein_scraper

## Dependencies (3)

- [cheerio](https://npm.io/package/cheerio.md) ^0.19.0
- [promise](https://npm.io/package/promise.md) ^7.0.4
- [request](https://npm.io/package/request.md) ^2.65.0

## Recent versions

- 1.0.3 (latest) — 2015-10-17
- 1.0.2 — 2015-10-17
- 1.0.1 — 2015-10-17
- 1.0.0 — 2015-10-17

## README

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(episodes[0])
Specify an episode to get the location of the stream for the specified episode.

## Coffeescript Example
```coffee
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
```

---
_Source: https://npm.io/package/tunein_scraper · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
