python 爬取简书评论
Posted brady-wang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 爬取简书评论相关的知识,希望对你有一定的参考价值。
import json import requests from lxml import etree from time import sleep url = "https://www.jianshu.com/shakespeare/notes/60479187/comments?page=1&count=100&author_only=false&order_by=desc" headers = { "User-Agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36", "Refer":"https://www.jianshu.com" } resp = requests.get(url,headers=headers) content = resp.content.decode(‘utf-8‘) res = json.loads(content) data = res[‘comments‘] for item in data: print(item[‘compiled_content‘])
以上是关于python 爬取简书评论的主要内容,如果未能解决你的问题,请参考以下文章
scrapy中使用selenium+webdriver获取网页源码,爬取简书网站