├── README.md ├── chromedriver.exe ├── wechat_pdf.exe └── wkhtmltox-0.12.5-1.mxe-cross-win64 .7z /README.md: -------------------------------------------------------------------------------- 1 | #### 微信公众号文章爬虫并生成PDF+HTML 2 | ##### 使用 3 | 4 | 安装wkhtmltopdf: 5 | 6 | 下载wkhtmltopdf:https://wkhtmltopdf.org/downloads.html 7 | 8 | ![image-20200404180406270](https://scriptkid-beta.github.io/img/%E5%85%AC%E4%BC%97%E5%8F%B7%E6%96%87%E7%AB%A0%E7%88%AC%E8%99%AB%E5%B9%B6%E7%94%9F%E6%88%90PDF+HTML/image-20200404180406270.png) 9 | 10 | 将下载好的wkhtmltox-0.12.5-1.mxe-cross-win64 文件解压缩并放到跟程序同一个目录,如图: 11 | 12 | ![image-20200404184015589](https://scriptkid-beta.github.io/img/%E5%85%AC%E4%BC%97%E5%8F%B7%E6%96%87%E7%AB%A0%E7%88%AC%E8%99%AB%E5%B9%B6%E7%94%9F%E6%88%90PDF+HTML/image-20200404184015589.png) 13 | 14 | 安装chromedriver: 15 | 16 | ``` 17 | #查看版本信息 18 | 浏览器中输入:chrome://version/ 19 | ``` 20 | 21 | chromedriver的版本一定要与Chrome的版本一致,不然可能就不起作用。 22 | 23 | 下载链接: 24 | 25 | https://npm.taobao.org/mirrors/chromedriver/ 26 | 27 | http://chromedriver.storage.googleapis.com/index.html 28 | 29 | 下载好放在跟程序同一目录下即可。 30 | 31 | ![image-20200404183023403](https://scriptkid-beta.github.io/img/%E5%85%AC%E4%BC%97%E5%8F%B7%E6%96%87%E7%AB%A0%E7%88%AC%E8%99%AB%E5%B9%B6%E7%94%9F%E6%88%90PDF+HTML/image-20200404183023403.png) 32 | 33 | 双击打开wechat_pdf.exe程序运行。 34 | 35 | ![image-20200404191021202](https://scriptkid-beta.github.io/img/%E5%85%AC%E4%BC%97%E5%8F%B7%E6%96%87%E7%AB%A0%E7%88%AC%E8%99%AB%E5%B9%B6%E7%94%9F%E6%88%90PDF+HTML/image-20200404191021202.png) 36 | 37 | ##### 效果 38 | 39 | ![image-20200404190937280](https://scriptkid-beta.github.io/img/%E5%85%AC%E4%BC%97%E5%8F%B7%E6%96%87%E7%AB%A0%E7%88%AC%E8%99%AB%E5%B9%B6%E7%94%9F%E6%88%90PDF+HTML/image-20200404190937280.png) 40 | 41 | https://scriptkid-beta.github.io/2020/04/04/%E5%85%AC%E4%BC%97%E5%8F%B7%E6%96%87%E7%AB%A0%E7%88%AC%E8%99%AB%E5%B9%B6%E7%94%9F%E6%88%90PDF+HTML/#more 42 | -------------------------------------------------------------------------------- /chromedriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScriptKid-Beta/Wechat_Articles_Spider/ea4e49036f536298a35f1605e18d9fed0b9a59b8/chromedriver.exe -------------------------------------------------------------------------------- /wechat_pdf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScriptKid-Beta/Wechat_Articles_Spider/ea4e49036f536298a35f1605e18d9fed0b9a59b8/wechat_pdf.exe -------------------------------------------------------------------------------- /wkhtmltox-0.12.5-1.mxe-cross-win64 .7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScriptKid-Beta/Wechat_Articles_Spider/ea4e49036f536298a35f1605e18d9fed0b9a59b8/wkhtmltox-0.12.5-1.mxe-cross-win64 .7z --------------------------------------------------------------------------------