Python 請求狀態(tài)代碼
Python 請求狀態(tài)代碼
在接收并解釋了請求消息后,服務(wù)器將以HTTP響應(yīng)消息進行響應(yīng)。響應(yīng)消息具有狀態(tài)碼。它是一個三位數(shù)的整數(shù),其中狀態(tài)碼的第一位數(shù)定義了響應(yīng)的類別,而后兩位則沒有任何分類作用。第一位數(shù)字有5個值:
狀態(tài)碼
編號 | 狀態(tài)碼 | 描述 |
1 | 1xx: Informational | 表示已收到請求,并且該過程正在繼續(xù)。 |
2 | 2xx: Success | 表示已成功接收,理解并接受了該動作。 |
3 | 3xx: Redirection | 表示采取進一步的措施才能完成請求。 |
4 | 4xx: Client Error | 表示請求包含不正確的語法或無法實現(xiàn)。 |
5 | 5xx: Server Error | 表示服務(wù)器無法滿足看似有效的請求。 |
成功響應(yīng)
在下面的示例中,我們從URL訪問文件,并且響應(yīng)成功。所以返回的狀態(tài)碼是200:
# Filename : example.py # Copyright : 2020 By Codebaoku # Author by : www.slktour.com # Date : 2020-08-25 import urllib3 http = urllib3.PoolManager() resp = http.request('GET', 'https://yapf.com/robots.txt') print resp.data # get the status of the response print resp.status
執(zhí)行上面代碼,得到以下結(jié)果:
# Filename : example.py # Copyright : 2020 By Codebaoku # Author by : www.slktour.com # Date : 2020-08-25 User-agent: * Disallow: /admin/
不成功響應(yīng)
在下面的示例中,我們從不存在的url訪問文件。響應(yīng)不成功。因此,返回的狀態(tài)碼是403。
# Filename : example.py # Copyright : 2020 By Codebaoku # Author by : www.slktour.com # Date : 2020-08-25 import urllib3 http = urllib3.PoolManager() resp = http.request('GET', 'https://yapf.com/robot1.txt') print resp.data # get the status of the response print resp.status
執(zhí)行上面代碼,得到以下結(jié)果:
<h1>Whitelabel Error Page</h1>This application has no explicit mapping for /error, so you are seeing this as a fallback.
Tue Aug 25 11:39:56 CST 2020There was an unexpected error (type=Bad Request, status=400).Failed to convert value of type 'java.lang.String' to required type 'java.lang.Integer'; nested exception is java.lang.NumberFormatException: For input string: "robots1.txt"
相關(guān)文章
- Python異步之迭代器怎么使用
- Python異步之生成器怎么使用
- Python異步之如何獲取當(dāng)前和正在運行任務(wù)
- python如何實現(xiàn)簡易的學(xué)生信息管理系統(tǒng)
- Python混合如何使用同步和異步函數(shù)
- Python迭代器如何創(chuàng)建使用
- 如何封裝Python時間處理庫創(chuàng)建自己的TimeUtil類
- Python DNS查找
- Python 自定義HTTP請求
- Python 請求狀態(tài)代碼
- Python 網(wǎng)絡(luò)接口
- Python HTTP服務(wù)器
- Python Web表單提交
- Python IMAP
- Python SFTP
- Python Web服務(wù)器
- Python 系統(tǒng)和內(nèi)存架構(gòu)
- Python 線程池
- Python 多處理器
- Python 事件驅(qū)動編程