python字典键错误无法解决

San*_* Hs 3 python dictionary http python-2.7 python-requests

我正在对大量链接进行状态检查,我的代码段如下:

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)
Run Code Online (Sandbox Code Playgroud)

当我执行代码时,出现以下错误:

    return self._store[key.lower()][1]
    KeyError: 'content-length'
Run Code Online (Sandbox Code Playgroud)

标头输出如下:

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'})
Run Code Online (Sandbox Code Playgroud)

我知道该错误存在是因为header output没有键“ content-length”,但是当if condition不满足时,它必须跳转到elif不会发生的下一个条件,而是停止执行代码,并抛出上述错误。

有什么建议么?对于初学者来说,这可能是一个愚蠢的问题,但却是一件好事。

bco*_*ins 5

除了使用括号表示法之外,还可以使用字典中的r.headers.get('content-length'),它不会抛出键错误,而只是返回None。

您可以使用任一种表示法从字典中检索值都很好。很多时候,您希望抛出该关键错误,以免使问题不被注意。在这种情况下,dictionary.get()就是您想要的。