dytt-reptitle-v3
v1.0.1
Published
电影天堂爬虫(v3版本)
Downloads
1
Readme
dytt-reptitle-v3
dytt8.net reptile
Tip
1、增加了搜索功能
2、config里的page和skip都改成不是必填
Install
npm install dytt-reptitle-v3
Usage
const dyttReptitle = require('dytt-reptitle-v3');
dyttReptitle().then(res => {
// do what you want...
});
Configure
// example
let config = {
page: 1,
skip: 0,
include: [ 'title', 'imgUrl', 'desc', 'downloadLink', 'descPageLink' ]
};
//search
config = {
search: "精灵旅社"
};
dyttReptitle(config).then(res => {
// do what you want...
});
config
| param | Description | Type | Required | --- | --- | --- | --- | | page | crawl page number | Number | true | | skip | skip page number | Number | false | | include | needed data | Array | false |
include
| param | Description | Type | Required | --- | --- | --- | --- | | title | movie title | String | false | | imgUrl | movie poster | String | false | | desc | movie description | String | false | | downloadLink | movie download link | String | false | | descPageLink | movie description page link | String | false |
Response example
[{ title: '2019年剧情战争《兰开斯特的天空》BD中英双字幕',
imgUrl: 'https://extraimage.net/images/2019/05/25/aea98d0038576db1158830d3c82cc888.jpg',
downloadLink: 'magnet:?xt=urn:btih:8dd1ccb0dedeaaacf78e4ae0d97bf88dfca8d060&dn=%e9%98%b3%e5%85%89%e7%94%b5%e5%bd%b1www.ygdy8.com.%e5%85%b0%e5%bc%80%e6%96%af%e7%89%b9%e7%9a%84%e5%a4%a9%e7%a9%ba.BD.720p.%e4%b8%ad%e8%8b%b1%e5%8f%8c%e5%ad%97%e5%b9%95.mkv&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fthetracker.org%3a80%2fannounce&tr=http%3a%2f%2fretracker.telecom.by%2fannounce',
descPageLink: 'https://www.dytt8.net/html/gndy/dyzz/20190525/58637.html'
}]
Uninstall
npm uninstall dytt-reptitle-v3
License
MIT