DeprecationWarning: HTTPResponse.getheader() is deprecated and will be removed in urllib3 v2.1.0. Instead use HTTPResponse.headers.get(name, default). content_type = resp.getheader('Content-Type').split(';')
时间: 2023-10-07 12:06:08 浏览: 448
HTTP_Response消息Content-Type规范
5星 · 资源好评率100%
这是一个警告信息,提示你正在使用的Python库urllib3中的HTTPResponse.getheader()方法即将被弃用,并在将来的版本中将被删除。它建议你使用HTTPResponse.headers.get(name, default)方法代替。这个警告信息的具体含义是,你应该将代码中的"resp.getheader('Content-Type')"替换为"resp.headers.get('Content-Type', '').split(';')"。这样可以避免在将来的版本中出现错误。
阅读全文