node-imdb-crawler

1.0.1 • Public • Published

node-imdb-crawler

Build Status Code Climate Test Coverage Issue Count

A node library to gets TV Shows info from IMDB and returns collected data as a json.

Example

const CrawlerImdb = require('node-imdb-crawler');
 
let imdb_code = "tt0944947";
let imdb_crawler = new CrawlerImdb(imdb_code);
 
imdb_crawler.get_basic(function(data) {
  console.log("Serie:");
  console.log(data);
});

Running above example:

node example/example.js

Contributing

Pull Requests are always welcome.

Ensure that before sending a PR:

You have tested the changes locally and they are functional. Include the relevant issue number, if applicable.

Running tests

npm test

License

MIT License (c) 2017 Adriano Godoy

Readme

Keywords

Package Sidebar

Install

npm i node-imdb-crawler

Weekly Downloads

2

Version

1.0.1

License

MIT

Unpacked Size

9.64 kB

Total Files

10

Last publish

Collaborators

  • adrianogodoy