'������'
var options = {
method: 'GET',
uri: 'https://www.kinopoisk.ru/index.php?first=no&what=&kp_query='+encodeURIComponent(filmName),
json: true
};
rp(options)
.then(function (htmlString) {
$ = cheerio.load(htmlString);
var poster = $('.most_wanted>.pic>a>img').attr('title');
var title = $('.most_wanted>.info>.name>a').html();
console.log(title );
var filmData = new Array({poster: poster, title: title});
resolve(filmData);
})
.catch(function (err) {
// Crawling failed...
});