前言:
目前看官们对“爬虫爬取公众号”都比较重视,大家都需要了解一些“爬虫爬取公众号”的相关文章。那么小编同时在网摘上收集了一些有关“爬虫爬取公众号””的相关内容,希望大家能喜欢,我们快快来学习一下吧!年前发了一篇FunTester公众号原创文章总结FunTester原创大赏,但是整理的时候却发现自己没有记录文章的发表日期,导致有一些文章由于发表日志过早(且排名靠前)影响了一丝阅读体验,所以我想了一个办法爬取了每篇文章的发表时间,在自己整理的Markdown文档中增加发表日期内容。
经过简单验证,决定使用接口爬虫功能来实现这个需求。
日期获取
经过页面的检查,发现的确存在发表日期的记录数据,隐藏在巨大的信息当中,不过有意思的是,微信公众号的公共访问内容居然全文只有一处日期且为真正的发表日期,所以也大大节省了我的时间。
下面是我的封装方法
static def test(String url) { // def url = "; def key = url.substring(url.lastIndexOf("/") + 1) def get = getHttpGet(url) def response = getHttpResponse(get) def res = response.getString("content") // output(string) // output(res) def all = Regex.regexAll(res, "20[1,2]\\d\\-\\d{2}\\-\\d{2} \\d{2}:\\d{2}") def s = all[0] output(key + PART + s) }原创文章链接
下面分享一下我原来的记录Markdown文档的内容截取:
- [分布式性能测试框架用例方案设想(二)]()- [基于docker的分布式性能测试框架功能验证(二)]()- [分布式性能测试框架单节点内测]()- [分段随机实践—模拟线上流量]()- [性能测试框架对比初探]()- [性能框架哪家强—JMeter、K6、locust、FunTester横向对比]()- [分布式性能测试框架用例方案设想(三)]()- [基于docker的分布式性能测试框架功能验证(三)]()- [10万QPS,K6、Gatling和FunTester终极对决!]()- [单机12万QPS——FunTester复仇记]()- [分布式请求放大器实现]()- [FunTester框架Redis性能测试之list操作]()- [全链路压测流量模型]()- [FunTester框架Redis性能测试之map&INCR]()
思路就是分行去读,然后获取每一行的URL链接,然后调用爬虫获取日期,然后我先存在了本地,并没有使用LevelDB,原因是因为爬虫都是一次性的,没必要存在本地的LevelDB里面。其实保存的方式也在上面爬虫的方法中,就是通过日志输出,避免爬虫中断。
PS:这里休眠了3秒,避免触发反爬虫规则,自测是可行的。
static def spider() { String path = "/Users/oker/IdeaProjects/funtester/document/directory.markdown" def line = RWUtil.readByLine(path) // output(line) def key = false line.each { if (key && it.startsWith("- [") && it.contains("weixin.qq")) { String url = it.substring(it.lastIndexOf("]") + 2) - ")" // output(url) test(url) // fail() sleep(3.0) } } }重写Markdown
我将爬取到的数据存在文件中,然后再读取到一个com.alibaba.fastjson.JSONObject中。再重新读取原来的Markdown文件,截取URL最后的一段(此段String也是JSONObject数据中的key),从JSONObject中去读到日期,然后拼接文案。
public static void main(String[] args) { def string = RWUtil.readByString(getLongFile("wx")) def info = parse(string) String path = "/Users/oker/IdeaProjects/funtester/document/directory.markdown" def line = RWUtil.readByLine(path) line.each { if (it.startsWith("- [") && it.contains("weixin.qq")) { String url = it.substring(it.lastIndexOf("]") + 2) - ")" def key = url.substring(url.lastIndexOf("/") + 1) output("$it $TAB 发表于${info.get(key)}") } else { output(LINE + it + LINE) } } }
实际效果如何大家可以点击阅读原文查看。
「Have Fun ~ Tester !」