我想通过请求获取此Page的此网址。
我想要的网址:https://www.holonis.com/api/comments/5ae3cfc82eebca0025b9890c/post
答案 0 :(得分:0)
您可以通过requests.get获取请求:
import json
import requests
## Fetch the page
resp = requests.get(url)
## Load it into a dict
node = json.loads(resp.text)
然后,您可以从节点或其他信息中获取评论,如下所示:
comments = [element['body'] for element in node['items']]