by: bubao
Created: 2017 年 04 月 28 日 20:00:44
Modified : 2019-12-2 2:16:40
知乎是一个好地方,最近有空,想把知乎上的文章爬下来,放在本地有空慢慢看。项目模仿 zhangolve 的项目。
cnpm i https://github.com/bubao/GetZhiHuZhuanLan.git --save
https://zhuanlan.zhihu.com/study-fe
的 postID
值是 study-fe
:
const Zhuanlan = require("..");
const fs = require("fs");
const util = require("util");
const FsStat = util.promisify(fs.stat);
const MAX_SAFE_INTEGER = 9007199254740991;
function isLength(value) {
return (
typeof value === "number" &&
value > -1 &&
value % 1 === 0 &&
value <= MAX_SAFE_INTEGER
);
}
function isArrayLike(value) {
return (
value != null && typeof value !== "function" && isLength(value.length)
);
}
const mkdir = async (...filePath) => {
if (isArrayLike(filePath)) {
filePath = require("path").resolve(...filePath);
}
await FsStat(`${filePath}`).then(() => {
console.log(
`⚓ ${require("path").basename(filePath)} 文件夹已经存在`
);
}).catch(() => {
fs.mkdir(`${filePath}`, () => {
console.log(
`🤖 创建 ${require("path").basename(
filePath
)}文件夹成功`
);
});
});
};
const writeFile = (path, data, format) => {
fs.writeFile(`${path}.${format}`, data, "utf8", err => {
if (err) throw err;
});
};
const run = (path, columnsID) => {
const zhihu = Zhuanlan.init({ columnsID });
let dir;
zhihu.once("info", (data) => {
dir = data.title;
mkdir(`${path}/${data.title}`);
});
let write_count = 0;
zhihu.on("batch_data", (element) => {
// console.log((element.now_count / element.articles_count * 100).toFixed(2) + "%");
element.data.map(({ filenameTime, header, content, copyRight, json }) => {
writeFile(
`${path}/${dir}/${filenameTime}`,
header + content + copyRight,
"md"
);
writeFile(
`${path}/${dir}/${filenameTime}`,
JSON.stringify(json),
"json"
);
write_count++;
console.log((write_count / element.articles_count * 100).toFixed(2) + "%");
});
});
zhihu.getAll();
};
run("./", "YJango");
本模块自定义的事件,都有对应的方法。
事件名 | 方法名 | 作用 |
---|---|---|
info | onInfo | 获取专栏信息 |
batch_data | onData | 获取专栏数据,接受一个回调函数 |
done | onDone | 监听完成事件 |
lodash
:最好用的工具
turndown
:用于将 HTML 转成 Markdown
filenamify
: 解决 windows 文件命名错误问题
zhihu-api
: 自己封装和维护的知乎 api 模块
- 使用 zhihu-api v0.1.1
- 事件监听改为
batch_data
- 原先的
filename
改为filenameTime
,filenameTime
为时间+文件名,原先的filename
只是文件名
使用 zhihu-api v0.1.0,事件监听的方式获取专栏数据
将模块迁移到知乎 api,只剩下知乎专栏爬虫,添加完整的 demo
知乎 API 更新,重写部分代码。
重构代码,只保留模块,代码的测试在test
文件夹下。
这次封装为模块,可二次开发。
如今因为知乎 api 和知乎专栏的网页布局有所改变,现在重写了这个爬虫,api 模块使用的是 zhihu 的重构代码,模块中的 request 模块再次二次封装。