加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Python > 正文

python字典键错误无法解决

发布时间:2020-12-20 11:30:29 所属栏目:Python 来源:网络整理
导读:我在一个巨大的链接列表中执行状态检查,我的代码如下: link = 'http://xyz'proxyDict = { "http" : "ip:80","https" : "https://ip:443"}r = requests.get(link,allow_redirects=False,verify=False)http_status = r.status_codeprint (r.headers)# check t
我在一个巨大的链接列表中执行状态检查,我的代码如下:

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'})

我知道错误的存在是因为标头输出没有键“content-length”,但是如果条件不满足则必须跳转到下一个不发生的elif条件,而是停止代码执行抛出上述错误.

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

解决方法

不使用括号表示法,而是使用字典中的r.headers.get(‘content-length’),它不会引发键错误,只返回None.

很好,您可以使用任何一种表示法从字典中检索值.很多时候,您希望抛出关键错误,以免让问题被忽视.在这种情况下,看来dictionary.get()就是你想要的.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读