python3 获取http请求的返回状态码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3 获取http请求的返回状态码相关的知识,希望对你有一定的参考价值。

#!/bin/env python # -*- coding: UTF-8 -*- # example: python3 http_status.py https://blog.51cto.com/liuxiaolan/2488619 import requests import sys def http_status(arg): try: html = requests.get(arg) code = html.status_code print(code) except: print(1) sys.exit(0) if __name__ == "__main__": code = sys.argv[1] http_status(code)

以上是关于python3 获取http请求的返回状态码的主要内容,如果未能解决你的问题,请参考以下文章

webHTTP状态返回码介绍,客户端请求服务器端,服务器返回状态码的含义介绍整理。

Http 常用请求方式和返回状态码

如何从 WinHttp 请求中获取 HTTP 状态码?

status 返回当前请求的http状态码

http 状态码

delphi中的webbrowser ,如何获取网站返回状态码