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

2021-02-08 09:19

阅读:650

标签:odi   请求   lang   def   log   状态   request   import   class   

#!/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请求的返回状态码

标签:odi   请求   lang   def   log   状态   request   import   class   

原文地址:https://blog.51cto.com/liuxiaolan/2490018


评论


亲,登录后才可以留言!