码迷,mamicode.com
首页 > 其他好文 > 详细

requests

时间:2018-06-16 14:26:54      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:传递参数   header   headers   ext   代理   stat   res   方法   应用   

requests模块 (注意与urllib.request 对比)

get请求:resp = requests.get(url,headers=headers, params=data) # get请求传递参数是params=data 如若使用代理ip,则只需要再参数里添加proxies=pro 例如pro={‘ip‘:‘代理ip‘}
post请求:resp = requests.get(url,headers=headers, data=data) # post请求传递参数是data=data
以上两种请求获取的对象resp

再通过:
resp.text 获取内容 # 字符串类型使用 .text
resp.content 获取内容 # 二进制类型 使用 .content
resp.status_code # 获取状态码
resp.headers # 获取头
resp.url # 获取url


session
# 先通过requests创建一个会话,然后后续的工作都使用这个会话来进行访问
# session这个对象有get和post方法,方法的使用和requests.get requests.post的应用方式一模一样
session = requests.Session()

requests

标签:传递参数   header   headers   ext   代理   stat   res   方法   应用   

原文地址:https://www.cnblogs.com/BensonChang/p/9190348.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!