-
-
Save LinZap/46f1191b562c247e05fd8a977987df6a to your computer and use it in GitHub Desktop.
Node.js - HK11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node ./hk11.js "narto" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const cheerio = require('cheerio') | |
const request = require('request') | |
let url = 'http://99770.hhxxee.com/search/s.aspx' | |
let search = process.argv[2] | |
let config = { form: { tbSTxt: search } } | |
request.post(url, config, function (error, response, body) { | |
let $ = cheerio.load(body) | |
$('.cListTitle>a').each(function(i, elem){ | |
console.log($(this).text() + " : " + $(this).attr('href')) | |
}) | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
火影忍者[72] : http://99770.hhxxee.com/comic/4296 | |
博人傳BORUTO[10] : http://99770.hhxxee.com/comic/30105 | |
火影忍者[完结] : http://99770.hhxxee.com/comic/168 | |
あの日の向こう側[完结] : http://99770.hhxxee.com/comic/27664 | |
NARUTO-ナルト-(日文)[47] : http://99770.hhxxee.com/comic/7350 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment