标签:请求 python爬虫 div its pytho 结果 文章 re模块 获取
今天,我试图通过python爬虫获取某页面的文章浏览量。
却每次得到的结果都是一样的。
原来,浏览量是通过请求了一个php页面得到的。
请求得到的结果如下:
$("#hits").html(750)
其中的750是浏览量。
那么怎么得到这个750呢?
代码如下:
re.split(’\W+’,soup.string)[-2] # soup.string指的是如上的结果
标签:请求 python爬虫 div its pytho 结果 文章 re模块 获取
原文地址:https://www.cnblogs.com/whist/p/8963005.html