リンクの膨大なリスト全体でステータスチェックを実行しています。私のスニペットは次のとおりです。
link = 'http://xyz'
proxyDict = { "http" : "ip:80", "https" : "https://ip:443"}
r = requests.get(link, allow_redirects=False, verify=False)
http_status = r.status_code
print (r.headers)
# check the status and react accordingly
if http_status == 200 and r.headers['content-length'] == "0":
print ('Link Alive - NO content'+';'+str(http_status)+';'+link, file = log)
elif http_status == 200 and "text/html" in r.headers['content-type']:
print ('External- direct HTML link'+';'+str(http_status)+';'+link, file = log)
elif http_status == 200 and "application" in r.headers['content-type']:
print ('External- direct HTML link'+';'+str(http_status)+';'+link, file = log)
コードを実行すると、次のエラーが発生します。
return self._store[key.lower()][1]
KeyError: 'content-length'
ヘッダー出力は次のとおりです。
CaseInsensitiveDict({'status': '200', path=/; HttpOnly, shpuvid=rBBcnFJUTliSHV+hA5lLAg==; expires=Thu, 08-Oct-15 18:26:32 GMT;'connection': 'keep-alive', 'cache-control': 'max-age=0, private, must-revalidate', 'date': 'Tue, 08 Oct 2013 18:26:32 GMT', 'content-type': 'text/html; charset=utf-8', 'x-rack-cache': 'miss'})
header output
キー「content-length」がないためエラーが存在することはわかっていますが、if condition
満たされない場合は、発生しない次の条件にジャンプするelif
必要があり、上記のエラーをスローしてコードの実行を停止します。
助言がありますか?ばかげた質問かもしれませんが、初心者が学ぶには良いことです。