标签:基本使用 导入模块 ade 发送 https 字典 可选参数 http res
一、requests的概述
requests模块是用于发送网络请求,返回响应数据。底层实现是urllib,而且简单易用,在python2、python3中通用,能够自动帮助我们解压(gzip压缩的等)网页内容。
二、requests的基本使用
1、基本使用:
pip install requests
import reqeusts
2、方法:
(1)requests.get(url, params=None, **kwargs),发送一个get请求,返回一个Response对象
"https://www.sogou.com/web?query={}"
requests.get("url", params={})
(2)requests.post(url, data=None, json=None, **kwargs),发送一个post请求
3、对象:
(1)Response对象,是发送请求后的响应对象
常用属性:
标签:基本使用 导入模块 ade 发送 https 字典 可选参数 http res
原文地址:https://www.cnblogs.com/chjxbt/p/11359679.html