Use node-csfd-api instead.
csfd.cz API that scraps HTML.
Made by Patrik Valkovič
npm install --save csfd-api
Every method returns promise
Just a few things are implemented for now:
- Parsing of search results (only movies and people)
- Parsing of movie info
- Parsing of person info
- Partial parsing of TV shows
Searching for movie:
const csfd = require('csfd-api')
const results = await csfd.search('matrix')
//...
results.films[?] === {
id: 9499,
name: 'Matrix',
}
//...
Getting movie info:
const csfd = require('csfd-api')
const film = await csfd.film(9499)
film === {
id: 9499,
imdbId: 'tt0133093',
title: "Matrix",
titles: [
{language:"USA", title:"The Matrix"},
{language:"Slovensko",title:"Matrix"},
],
genre:["Akční","Sci-Fi"],
shotPlaces:["USA"],
year:1999,
length:131,
score:90,
directors:[
{id:3112,name:"Lilly Wachowski"},
{id:3113,name:"Lana Wachowski"}],
"screenplay":[
{id:3112,name:"Lilly Wachowski"},
{id:3113,name:"Lana Wachowski"}
],
music:[{id:63014,name:"Don Davis"}],
actors:[
{id:46,name:"Keanu Reeves"},
//...
],
content: "Uvěříte neuvěřitelnému! ...",
poster: "http://img.csfd.cz/...",
related: [
//...
{
id: 9497,
name: 'Matrix Reloaded'
}
//...
],
similar: [
//...
{
id: 254156,
name: 'Počátek'
},
//...
]
}
Library partially allows to parse TV shows information.
It is parsed same way as movie, but since version 1.1.0 output also contain information about type. These properties are null for the movies.
const csfd = require('csfd-api')
const film = await csfd.film(263138)
film === {
id: 263138,
imdbId: 'tt0944947',
title: "Hra o trůny",
type: "TV seriál",
length: 3639,
serialLength: {
episodes: 67,
length: 60
}
}
It is possible to parse use comments as well, however as there can be thousands of comments for a movie, there quiet delay.
const csfd = require('csfd-api')
const comments = await csfd.comments(9499)
comments.comments === [
// ...
{
author: {
id: 95,
name: 'golfista',
},
rating: 5,
content: 'Určitě jeden ze tří nejlepších Sci-fi...',
date: new Date(2003, 4, 13),
},
// ...
]
- TV show parsing
- User parsing
All help and pull requests are welcomed.
MIT