当前位置:   article > 正文

Python提取评论(使用pycharm+Python)_bs4提取网页评论

bs4提取网页评论

一、安装调用所要用到的库函数

  1. import requests
  2. from bs4 import BeautifulSoup

二、自定义根据每页影评的url爬取影评的方法 

  1. # 1.请求url
  2. def getData(url):

三、请求头为字典格式

  1. headers = {
  2.          'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 Edg/92.0.902.67'
  3.     }

四、携带请求头去发请求

 response = requests.get(url=url, headers=headers)

五、使用“bs4”和“html5lib”解析网页内容

 bs = BeautifulSoup(response.content, 'html5lib')

六、获取所有的评论 span标签

short_list = bs.find_all("span", attrs={"class": "short"})

七、遍历shortList

 for short in short_list:

八、获取标签内部的文字

  1. content = short.text
  2.          print(content)

九、main函数(整个程序的入口)

  1. if __name__ == '__main__':
  2.      for i in range(1):  # 打印的次数
  3.          baseurl = 'https://movie.douban.com/subject/30174085/comments?sort=new_score&status=P'
  4.          baseurl = baseurl.format(i * 20)  # 打印的范围(条数)
  5.          # 循环调用爬取的方法
  6.          getData(baseurl)

                                                                                                                                                                   CHPanda   ​2021-08-15

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/665150
推荐阅读
相关标签
  

闽ICP备14008679号