V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
donglongtu
V2EX  ›  Python

Python 获取 HTTP 请求的状态码(200,404 等)

  •  
  •   donglongtu · 2017-06-28 09:32:30 +08:00 · 2388 次点击
    这是一个创建于 2501 天前的主题,其中的信息可能已经有所发展或是发生改变。

    Python 获取 HTTP 请求的状态码(200,404 等),不访问整个页面源码,那样太浪费资源:

    输入:www.v2ex.com 输出:200
    输入:www.v2ex.com/nonexistant 输出:404
    
    revotu
        1
    revotu  
       2017-06-28 09:34:21 +08:00
    Python 实用脚本清单 : http://www.revotu.com/python-practical-script-list.html

    http 不只有 get 方法(请求头部+正文),还有 head 方法,只请求头部。


    import httplib

    def get_status_code(host, path="/"):
    """ This function retreives the status code of a website by requesting
    HEAD data from the host. This means that it only requests the headers.
    If the host cannot be reached or something else goes wrong, it returns
    None instead.
    """
    try:
    conn = httplib.HTTPConnection(host)
    conn.request("HEAD", path)
    return conn.getresponse().status
    except StandardError:
    return None

    print get_status_code("www.v2ex.com") # prints 200
    print get_status_code("www.v2ex.com", "/nonexistant") # prints 404
    bolide2005
        2
    bolide2005  
       2017-06-28 09:35:43 +08:00
    >>> import requests
    >>> response = requests.get("http://www.baidu.com")
    >>> print response.status_code
    200
    dd99iii
        3
    dd99iii  
       2017-06-30 08:56:05 +08:00 via iPhone
    def get_status_code(url):
    r = requests.head(url)
    return r.status_code
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2104 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 26ms · UTC 04:36 · PVG 12:36 · LAX 21:36 · JFK 00:36
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.