Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 python 中,我想将 zlib.compress 的输出插入到 Mongo。
但是,我收到以下错误:
“文档中的字符串必须是有效的 UTF-8”
我的理解是 Mongo 可以处理字节串。如何将压缩数据插入数据库?
您需要使用 pymongo 的pymongo.binary.Binary类来包装二进制压缩数据,使其不被视为字符串。
pymongo.binary.Binary