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.
在 NDB 中,键的 id 是 binarysafe 吗?
我想使用一些二进制字符串作为 id ^_^(例如比特币交易的 txid.decode('hex'))
键可以使用数字 id 或字符串名称。
在您的情况下,您可以将二进制字符串转换为十六进制并将其存储为字符串作为名称。
它可能是也可能不是(它不是设计成的)利用 uuid 库可能会更好
import uuid client_id = str(uuid.uuid4()).replace("-",'')