文章目录
res = requests.get('www.baidu.com')
'''
返回的 res 是 Response类,它主要有以下方法:
response.status_code
response.content
response.text
response.encoding
'''
response对象的常用属性
属性 | 作用 |
---|---|
response.status_code | 检查请求是否成功 |
response.content | 把response对象转换为二进制数据 |
response.text | 把response对象转换为字符串数据 |
response.encoding | 定义response对象的编码 |
常见的相应状态码解释
响应状态码 | 说明 | 举例 | 说明 |
---|---|---|---|
1xx | 请求收到 | 100 | 继续提出请求 |
2xx | 请求成功 | 200 | 成功 |
3xx | 重定向 | 305 | 应使用代理访问 |
4xx | 客户端错误 | 403 | 禁止访问 |
5xx | 服务器端错误 | 503 | 服务不可用 |