我最近想到了一个非常简单的实用程序脚本,它可以使用两个参数来测试网站是否在线:开始测试的 url 和详细程度(在不发出警报的情况下可以接受多少丢包)。我想用 Python 2.7.3 编写代码并使其尽可能简单。
这是我的伪代码。
def urlCheck(url, verbosity):
badcount = 0
iteration = 0
while iteration < 10:
#ping code here
if website is down:
badcount += 1
iteration += 1
if badcount > verbosity:
print "Phooey. It appears your server is down."
if badcount <= verbosity:
print "Whew! Your server appears to be running smoothly."
我的问题是,我应该在注释行中放置什么代码?(#ping 代码在这里)
谢谢!