for part in self.message.walk():
content_type = part.get_content_type()
file_content = part.get_payload(decode=True)
起初,我尝试获取mht文件每个boundary下的信息。写了这串代码,但是发现一直出现
f.write(file_content)
TypeError: a bytes-like object is required, not 'NoneType'
的bug
通过debug发现问题出在file_content对象上
发现出问题的对象的type是multiple,就想着我应该要再循环一次,获取出它内部的信息
结果套完循环后发现第一个对象还是multipart,而且信息完全一模一样。
这就给我搞懵了,不信邪的我把它全打印出来看
for part in self.message.walk():
print(part.get_content_type())
发现结果是
multipart/related
text/html
text/css
text/css
image/png
image/jpeg
image/png
image/png
image/png
破案了,对于每一个message,它会把自身也遍历进去(包含在message这个信息里面)
所以,只要把type为multipart的对象踢掉就好
if part.get_content_maintype() == 'multipart':
continue
提示:本处理方法仅适用于内部不再包含其他multipart对象的mht文件,如果你要处理的mht文件中不止包含应该multipart。请加一个判断,仅在第一次的时候continue,后面的情况走递归调用前面的代码