node-imdb-crawler
v1.0.1
Published
A node library to crawler imdb and parse to json
Downloads
8
Readme
node-imdb-crawler
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