写了个小的一批的小说爬虫web项目,能够配置多个数据源,理论上很多小说网站都能加进去,有兴趣的可以完善下
下载:
SanMuYuanBookRemake.rar
(11.82 KB, 下载次数: 95)
[Java] 纯文本查看 复制代码 {
"顶点": {
"请求类型": "POST",
"URL": "http://www.ddxs.com/",
"搜索URL": "http://www.ddxs.com/search.php",
"搜索字段": "keyword",
"正则匹配目录": "<a href=\"/bookCode/(.*?)</a>",
"内容页获取id": "contents",
"搜索页标签": "table"
},
"笔趣阁5200": {
"请求类型": "GET",
"URL": "https://www.biquge5200.com/",
"搜索URL": "https://www.biquge5200.com/modules/article/search.php",
"搜索字段": "searchkey",
"正则匹配目录": "<a href=\"https://www.biquge5200.com/bookCode/(.*?)</a>",
"内容页获取id": "content",
"搜索页标签": "table"
},
"笔趣阁": {
"请求类型": "GET",
"URL": "https://www.biquge.com/",
"搜索URL": "http://www.biquge.com/searchbook.php",
"搜索字段": "keyword",
"正则匹配目录": "<a href=\"/bookCode/(.*?)</a>",
"内容页获取id": "content",
"搜索页标签": "dl"
}
}
|