Python如何使用https请求

python

Python如何使用https请求

Python使用https请求代码如下:

import urllib

import httplib

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的功能。

更多技术请关注云海天Python教程。

以上是 Python如何使用https请求 的全部内容, 来源链接: utcz.com/z/527146.html

回到顶部