0

呃,

我仍在掌握 Python 基础知识。

我目前的要求是开发一个 Python 脚本来测试多个设备的基于 Web 的界面的可用性(例如,您可能必须通过 Web 浏览器输入“http://192.168.0.2:9876”),这并不必须过于复杂。

我正在尝试从简单的 bash curl 命令进行转换,因为最初我在 bash 脚本中有如下内容:

    date=`date +"%Y-%m-%d_%H-%M-%S-%N"`
    curl -s --connect-timeout 1 ${ip} -o /dev/null
    test=$?
    if [[ $test == 0 ]] ;then
            echo "${date}:webping - Web Page Up for ${ip}" >> $log
    else
            echo "${date}:webping - Web Page Down for ${ip}" >> $log
    fi

这适用于原始概念,但我希望在 python 中有类似的东西。输出可能会有所不同,在合理的范围内......任何人都知道从哪里开始。

PS我在这里查看了其他一些问题,但它们似乎给出了误报,接口已被“删除”(即我停止了服务)并且它仍然给出状态代码 200。

编辑:下面是我尝试过的代码。

for url in ["http://www.google.co.uk", "http://192.168.0.2:8000"]:
    try:
            connection = urllib2.urlopen(url)
            print connection.getcode()
            connection.close()
    except urllib2.HTTPError, e:
            print "none"

更正:我得到以下结果......

Traceback (most recent call last):
  File "<stdin>", line 3, in <module>
  File "C:\Python27\lib\urllib2.py", line 126, in urlopen
    return _opener.open(url, data, timeout)
  File "C:\Python27\lib\urllib2.py", line 391, in open
    response = self._open(req, data)
  File "C:\Python27\lib\urllib2.py", line 409, in _open
    '_open', req)
  File "C:\Python27\lib\urllib2.py", line 369, in _call_chain
    result = func(*args)
  File "C:\Python27\lib\urllib2.py", line 1173, in http_open
    return self.do_open(httplib.HTTPConnection, req)
  File "C:\Python27\lib\urllib2.py", line 1148, in do_open
    raise URLError(err)
urllib2.URLError: <urlopen error [Errno 10061] No connection could be made because the target machine actively refused it>

我不希望看到 python 错误输出。

提前致谢

4

1 回答 1

0

查看http://docs.python-requests.org/en/latest/index.html以了解 Python 模块,它提供了您需要的工具和友好的 API。在这种情况下,您将按照以下方式做一些事情:

import requests
...
try:
  r = requests.get(url, timeout=1)
  ok = (r.status_code // 100) == 2
except:
  ok = False

# now use the value of ok

虽然我不知道我在那里使用的特定测试(成功意味着 2xx 响应)是否正是您想要的。

于 2012-05-13T21:40:01.533 回答