这个模块非常有用。看了一中午的文档。最好还是感觉这个工具给力!
下载地址
http://pypi.python.org/packages/source/c/chardet/chardet-1.0.1.tar.gz#md5=7c28b02bca7847c13bebedaf4df6c5a3
fp = open("gg.eml", "r")
fo = open("gg.html","w")
mail= email.message_from_file(fp)
res=ParseMail(mail)
strtype=type(res)
print strtype.__name__
#unicode(res,"cp936")
#print res
print chardet.detect(res)
另外,这篇文章也不错。(不知道是不是原作者)