码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2020-04-25 10:32:38      阅读:371      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!