相比httplib、urllib,request真是太美丽了,记录下

下载安装地址:http://docs.python-requests.org/en/latest/user/install/#install

get请求:

    def get_res(url):
        res=requests.get(url)
        return res

  

返回值:

res.txt  字符格式
res.content  数组格式
res.json() 字典格式

  

相关文章:

  • 2021-11-09
  • 2021-12-05
  • 2022-12-23
  • 2023-02-10
  • 2022-12-23
  • 2021-08-05
  • 2023-02-12
  • 2022-12-23
猜你喜欢
  • 2022-01-26
  • 2022-01-12
  • 2021-06-10
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案