用法:
class http.HTTPStatus
3.5 版中的新函数。
enum.IntEnum
的子类,它定义了一组 HTTP 状态代码、原因短语和用英语编写的长说明。用法:
>>> from http import HTTPStatus >>> HTTPStatus.OK <HTTPStatus.OK: 200> >>> HTTPStatus.OK == 200 True >>> HTTPStatus.OK.value 200 >>> HTTPStatus.OK.phrase 'OK' >>> HTTPStatus.OK.description 'Request fulfilled, document follows' >>> list(HTTPStatus) [<HTTPStatus.CONTINUE: 100>, <HTTPStatus.SWITCHING_PROTOCOLS:101>, ...]
相关用法
- Python http.client.HTTPConnection.set_tunnel用法及代码示例
- Python http.client.HTTPConnection用法及代码示例
- Python html.escape()用法及代码示例
- Python html.unescape()用法及代码示例
- Python hashlib.sha3_256()用法及代码示例
- Python help()用法及代码示例
- Python hashlib.sha3_512()用法及代码示例
- Python hashlib.blake2s()用法及代码示例
- Python hashlib.blake2b()用法及代码示例
- Python hasattr()用法及代码示例
- Python statistics harmonic_mean()用法及代码示例
- Python math hypot()用法及代码示例
- Python hash()用法及代码示例
- Python hashlib.sha3_224()用法及代码示例
- Python hashlib.shake_256()用法及代码示例
- Python hex()用法及代码示例
- Python OpenCV haveImageReader()用法及代码示例
- Python hashlib.pbkdf2_hmac用法及代码示例
- Python hashlib.shake_128()用法及代码示例
- Python hex用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 http.HTTPStatus。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。