Python如何使用https请求
Python使用https请求代码如下:
importurllib importhttplib headers={"Content-type":"application/x-www-form-urlencoded;charset=UTF-8", "Accept":"*/*"} params={'username':'xxxx'} data=urllib.urlencode(params) host='127.0.0.1' url='/login' conn=httplib.HTTPSConnection(host) conn.request('POST',url,data,headers)
httplib模块定义了实现HTTP和HTTPS协议的客户端的类。它通常不直接使用 – 模块urllib使用它来处理使用HTTP和HTTPS的URL。httplib是一个相对底层的http请求模块,其上有专门的包装模块,如urllib内建模块,goto等第三方模块.
urllib提供了一系列用于操作URL的功能。
原文来自:https://www.py.cn© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容