requests如何发送get请求?
乙醇 创建于 almost 7 years 之前
最后更新: less than a minute 之前
阅读数: 174
使用requests发送请求其实非常简单。
首先导入Requests模块
>>> import requests
下面试着去发送具体的请求,比如获取github的timeline信息
r = requests.get('https://api.github.com/events')
r是requests的响应(Response)对象,我们可以从r里面获取各种信息,比如获取响应的内容print(r.text)