次のスクリプトがあります(以下)。URLのステータスコードを返します。ファイルをループして、各ホストへの接続を試みます。唯一の問題は、例外に達すると明らかにループが停止することです。
私はそれの方法をループに入れるために多くのことを試みましたが、役に立ちませんでした。何かご意見は?
import urllib
import sys
import time
hostsFile = "webHosts.txt"
try:
f = file(hostsFile)
while True:
line = f.readline().strip()
epoch = time.time()
epoch = str(epoch)
if len(line) == 0:
break
conn = urllib.urlopen(line)
print epoch + ": Connection successful, status code for " + line + " is " + str(conn.code) + "\n"
except IOError:
epoch = time.time()
epoch = str(epoch)
print epoch + ": Connection unsuccessful, unable to connect to server, potential routing issues\n"
sys.exit()
else:
f.close()
編集:
その間に私はこれを思いついた、これに関する問題はありますか?(私はまだ学んでいます:p)..。
f = file(hostsFile)
while True:
line = f.readline().strip()
epoch = time.time()
epoch = str(epoch)
if len(line) == 0:
break
try:
conn = urllib.urlopen(line)
print epoch + ": Connection successful, status code for " + line + " is " + str(conn.code) + "\n"
except IOError:
print epoch + "connection unsuccessful"
ありがとう、
MHibbin