在Python中读取字节流

发布于 2024-08-10 01:32:32 字数 457 浏览 9 评论 0原文

我正在使用 Python appscript 将插图写入我的 iTunes 歌曲。我有一个以 .pict 格式存储的文件,当我使用正常的 openread 例程时,它会将内容读取为字符串(以 utf-8 编码)。

imFile = open('/Users/kartikaiyer/temp.pict','r')
data = imFile.read()
it = app('iTunes')
sel = it.current_track.get()
sel.artworks[1].data_.set(data[513:])

是我正在使用的代码。它因无法识别的对象而失败,我猜是因为 set 参数是 utf-8 编码的字符串,关于如何将 data 强制为字节流并将其用作集合的任何想法范围。 BinAscii模块没有我需要的功能。任何帮助将不胜感激。

I'm using Python appscript to write artwork to my iTunes Songs. I have a file stored in .pict format and when I use the normal open and read routines, it reads the content as a string (encoded in utf-8).

imFile = open('/Users/kartikaiyer/temp.pict','r')
data = imFile.read()
it = app('iTunes')
sel = it.current_track.get()
sel.artworks[1].data_.set(data[513:])

Is the code I'm using. it fails with a objct not recognized and I'm guessing its because the set parameter is a utf-8 encoded string, Any ideas as to how I can coerce data to a bytestream and use that as a set parameter. BinAscii module doesn't have the functions I need. Any help would be much appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

川水往事 2024-08-17 01:32:32

尝试将读取模式设置为二进制:

imFile = open('/Users/kartikaiyer/temp.pict','rb')

Try setting the read mode to binary:

imFile = open('/Users/kartikaiyer/temp.pict','rb')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文