AttributeError:“字节”对象没有属性“告诉”

Posted

技术标签:

【中文标题】AttributeError:“字节”对象没有属性“告诉”【英文标题】:AttributeError: 'bytes' object has no attribute 'tell' 【发布时间】:2021-11-29 12:11:34 【问题描述】:

我正在使用email.messagesmtplib 使用python 发送电子邮件。当图像作为附件发送时,会引发此错误:

AttributeError: 'bytes' object has no attribute 'tell'

图片附件代码如下:

if filetype.lower() in ['jpg','jpeg','png','gif']:
    with open(filename, 'rb') as file:
        file_data = file.read()
        image_type = imghdr.what(file_data)
    
    actual_filename = filename.split('/')[-1]
    msg.add_attachment(file_data, maintype='image', subtype=image_type, filename=actual_filename)

【问题讨论】:

【参考方案1】:

宁可做

with open(filename, 'rb') as file:
    file_data = file.read()
    image_type = imghdr.what(file_data)

你可能会这样做

image_type = imghdr.what(filename)
with open(filename, 'rb') as file:
    file_data = file.read()

正如imghdr.what(file, h=None) 所做的那样

测试file命名的文件中包含的图像数据,并返回 描述图像类型的字符串。如果提供了可选的 h,则 文件参数被忽略,h 被假定为包含字节流 测试。

【讨论】:

以上是关于AttributeError:“字节”对象没有属性“告诉”的主要内容,如果未能解决你的问题,请参考以下文章

AttributeError: 'RDD' 对象没有属性 'show'

AttributeError:“NumpyArrayIterator”对象没有属性“类”

AttributeError:'list' 对象没有属性 'size'

AttributeError:“模块”对象没有属性“WebSocketApp”

AttributeError: 'float' 对象没有属性 'split'

AttributeError:“列表”对象没有属性“numpy”