报错:
ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the ‘ssl’ module is compiled with OpenSSL 1.1.0h 27 Mar 2018.
解决办法:
Terminal窗口执行:pip install urllib3==1.26.15
Urllib3是一个功能强大,用于HTTP客户端的Python库,它包含4个模块:
urllib.request---请求模块,用于发起网络请求
urllib.parse---解析模块,用于解析url
urllib.error---异常处理模块,用于处理request引起的异常
urllib.robotparser robots.tx---用于解析robots.txt文件
get 请求
import urllib3 #导入urllib3模块
urllib3.disable_warnings()
http = urllib3.PoolManager()
re = http.request('get',请求地址)
print(resp.data) -- 查看响应数据
post请求
import urllib3 #导入urllib3模块
urllib3.disable_warnings()
http = urllib3.PoolManager()
re = http.request('post',请求地址,fields=请求参数, headers=请求头)
print(resp.data) -- 查看响应数据
参考链接:https://blog.csdn.net/qq_42873925/article/details/131112721
网友评论