Young
urllib3模块的基本使用 urllib3模块的基本使用
urllib3模块的基本使用 简单的请求 get请求 import urllib3 http = urllib3.PoolManager() baidu = http.request("get","https://www.baidu.c
2020-03-20
python中request模块的基本使用 python中request模块的基本使用
Requests库的基础使用Get/Post请求 Get请求 requests.get('http://www.baidu.com',参数) Post请求 requests.post('http://www.baidu
2020-03-20