溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Python3如何處理HTTP請(qǐng)求

發(fā)布時(shí)間:2021-07-23 13:57:50 來(lái)源:億速云 閱讀:182 作者:小新 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要介紹Python3如何處理HTTP請(qǐng)求,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

Python3處理HTTP請(qǐng)求的包:http.client,urllib,urllib3,requests

其中,http 比較 low-level,一般不直接使用

urllib更 high-level一點(diǎn),屬于標(biāo)準(zhǔn)庫(kù)。urllib3跟urllib類(lèi)似,擁有一些重要特性而且易于使用,但是屬于擴(kuò)展庫(kù),需要安裝

requests 基于urllib3 ,也不是標(biāo)準(zhǔn)庫(kù),但是使用非常方便

個(gè)人感覺(jué),如果非要用標(biāo)準(zhǔn)庫(kù),就使用urllib。如果沒(méi)有限制,就用requests

# import http.client
# http_client = http.client.HTTPConnection('localhost',8080,timeout=10)
# http_client.request('get','/jenkins/api/json?pretty=true')
# response = http_client.getresponse()
# print(response.status)
# print(response.read())
# import urllib.request
# response = urllib.request.urlopen('http://localhost:8080/jenkins/api/json?pretty=true')
# print(response.status)
# print(response.read())
# import urllib3
# response = urllib3.PoolManager().request('get','http://localhost:8080/jenkins/api/json?pretty=true')
# print(response.status)
# import requests
# response = requests.get('http://localhost:8080/jenkins/api/json?pretty=true')
# print(response.status_code)
# print(response.text)
# print(response.json())
# print(response.reason)
import requests
from requests.auth import HTTPBasicAuth
response = requests.post('http://localhost:8080/jenkins/job/check_python_version/build',auth=('admin','wangmin'))
print (response.status_code)
print (response.reason)
print(response.headers)

jenkins系統(tǒng)管理=》Configure Global Security,取消勾選“防止跨站點(diǎn)請(qǐng)求偽造”

Python3如何處理HTTP請(qǐng)求

以上是“Python3如何處理HTTP請(qǐng)求”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI