gpt4 book ai didi

python - 我如何使用 msgpack 读写?

转载 作者:太空狗 更新时间:2023-10-29 22:02:38 25 4
gpt4 key购买 nike

如何使用 msgpack 序列化/反序列化字典 data

最佳答案

Python docs似乎不太好,所以这是我的尝试。

安装

pip install msgpack

读写msgpack

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import msgpack

# Define data
data = {
"a list": [1, 42, 3.141, 1337, "help"],
"a string": "bla",
"another dict": {"foo": "bar", "key": "value", "the answer": 42},
}

# Write msgpack file
with open("data.msgpack", "wb") as outfile:
packed = msgpack.packb(data)
outfile.write(packed)

# Read msgpack file
with open("data.msgpack", "rb") as data_file:
byte_data = data_file.read()

data_loaded = msgpack.unpackb(byte_data)
print(data == data_loaded)

备选方案

对于您的应用程序,以下内容可能很重要:

  • 其他编程语言的支持
  • 读写能力
  • 紧凑性(文件大小)

另请参阅:Comparison of data serialization formats

如果您更愿意寻找制作配置文件的方法,您可能需要阅读我的短文 Configuration files in Python

关于python - 我如何使用 msgpack 读写?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43442194/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com