为了账号安全,请及时绑定邮箱和手机立即绑定

Pymongo:无法编码十进制类型的对象。十进制?

Pymongo:无法编码十进制类型的对象。十进制?

www说 2022-10-25 14:43:28
在尝试将insert_one插入集合之后。我收到此错误:bson.errors.InvalidDocument: cannot encode object: Decimal('0.16020'), of type: <class 'decimal.Decimal'>当 JSON 不包含decimal.Decimal对象时,代码运行良好。如果有解决方案,您能否考虑以递归方式对其进行编码,以使整个 python 字典json_dic兼容以插入到 MongoDB 中(因为条目中有不止一次的类 decimal.Decimal 实例json.dic)。编辑 1:这是我正在处理的 JSONimport simplejson as jsonfrom pymongo import MongoClientjson_string = '{"A" : {"B" : [{"C" : {"Horz" : 0.181665435,"Vert" : 0.178799435}}]}}'json_dict = json.loads(json_string)this_collection.insert_one(json_dict)这产生 bson.errors.InvalidDocument: cannot encode object: Decimal('0.181665435'), of type: <class 'decimal.Decimal'>编辑 2:不幸的是,我上面的示例过于简化了我现有的 JSON,@ Belly Buster提供的答案(尽管上面的 Json 可以正常工作)出现错误:AttributeError: 'decimal.Decimal' object has no attribute 'items'使用我的实际 JSON,所以我在这里提供完整的 JSON,希望能找出问题所在(也作为屏幕截图):json_string = '{  "Setting" : {    "GridOptions" : {      "Student" : "HighSchool",      "Lesson" : 1,      "Attended" : true    },    "Grades" : [      80,      50.75    ],    "Count" : 2,    "Check" : "Coursework",    "Passed" : true  },  "Slides" : [    {      "Type" : "ABC",      "Duration" : 1.5    },    {      "Type" : "DEF",      "Duration" : 0.5    }  ],  "Work" : {    "Class" : [      {        "Time" : 123456789,        "Marks" : {          "A" : 50,          "B" : 100        }      }    ],    "CourseWorkDetail" : [      {        "Test" : {          "Mark" : 0.987654321        },        "ReadingDate" : "Feb162006",        "Reading" : 300.001,        "Values" : [          [            0.98765          ],          [            -0.98765          ]        ]      },      {        "Test" : {          "Mark" : 0.123456789        },        "ReadingDate" : "Jan052010",        "Reading" : 200.005,        "Values" : [          [            0.12345          ],          [            -0.12345          ]        ]      }    ]  },  "listing" : 5}'
查看完整描述

4 回答

?
胡说叔叔

TA贡献1804条经验 获得超8个赞

编辑:


该convert_decimal()函数将在复杂的 dict 结构中执行 Decimal 到 Decimal128 的转换:


import simplejson as json

from pymongo import MongoClient

from decimal import Decimal

from bson.decimal128 import Decimal128


def convert_decimal(dict_item):

    # This function iterates a dictionary looking for types of Decimal and converts them to Decimal128

    # Embedded dictionaries and lists are called recursively.

    if dict_item is None: return None


    for k, v in list(dict_item.items()):

        if isinstance(v, dict):

            convert_decimal(v)

        elif isinstance(v, list):

            for l in v:

                convert_decimal(l)

        elif isinstance(v, Decimal):

            dict_item[k] = Decimal128(str(v))


    return dict_item


db = MongoClient()['mydatabase']

json_string = '{"A" : {"B" : [{"C" : {"Horz" : 0.181665435,"Vert" : 0.178799435}}]}}'

json_dict = json.loads(json_string, use_decimal=True)

db.this_collection.insert_one(convert_decimal(json_dict))

print(db.this_collection.find_one())

给出:


{'_id': ObjectId('5ea743aa297c9ccd52d33e05'), 'A': {'B': [{'C': {'Horz': Decimal128('0.181665435'), 'Vert': Decimal128('0.178799435')}}]}}

原来的:


要将小数转换为 MongoDB 满意的 Decimal128,请将其转换为字符串,然后再转换为 Decimal128。此代码段可能会有所帮助:


from pymongo import MongoClient

from decimal import Decimal

from bson.decimal128 import Decimal128


db = MongoClient()['mydatabase']

your_number = Decimal('234.56')

your_number_128 = Decimal128(str(your_number))

db.mycollection.insert_one({'Number': your_number_128})

print(db.mycollection.find_one())

给出:


{'_id': ObjectId('5ea6ec9b52619c7b39b851cb'), 'Number': Decimal128('234.56')}


查看完整回答
反对 回复 2022-10-25
?
收到一只叮咚

TA贡献1821条经验 获得超4个赞

Pymongo 无法识别Decimal- 这就是您收到错误的原因。

正确的 pymongo 插入是coll.insert_one({"number1": Decimal128('8.916')}).

您还需要导入 -from bson import Decimal128

现在,如果您想在不更改Decimal为 Decimal128 的情况下处理您的 JSON 文件,您可以修改导入语句。

from bson import Decimal128 as Decimal
coll.insert_one({"number1": Decimal('8.916')})


查看完整回答
反对 回复 2022-10-25
?
BIG阳

TA贡献1859条经验 获得超6个赞

我建议只添加一个编解码器以在插入时自动转换数据类型。如果您递归地更改数据类型以使用 Decimal128 对象,您可能会破坏与现有代码的兼容性。

您可以按照教程在此处的 pymongo 文档中创建一个简单的 decimal.Decimal 编解码器


查看完整回答
反对 回复 2022-10-25
?
慕无忌1623718

TA贡献1744条经验 获得超4个赞

from bson.decimal128 import Decimal128, create_decimal128_context

from decimal import localcontext


decimal128_ctx = create_decimal128_context()

with localcontext(decimal128_ctx) as ctx:

    horiz_val = Decimal128(ctx.create_decimal("0.181665435"))

    vert_val = Decimal128(ctx.create_decimal("0.178799435"))


doc = { 'A': { 'B': [ { 'C': { 'Horiz': horiz_val, 'Vert': vert_val } } ] } }

result = collection.insert_one(doc)

# result.inserted_id


pprint.pprint(list(collection.find()))


[ {'A': {'B': [{'C': {'Horiz': Decimal128('0.181665435'),

                      'Vert': Decimal128('0.178799435')}}]},

  '_id': ObjectId('5ea79adb915cbf3c46f5d4ae')} ]

笔记:

来自 PyMongo 的 decimal128 文档:

为确保计算结果始终可以存储为 BSON Decimal128,请使用返回的上下文create_decimal128_context()(注意:如上面的示例代码所示)。


查看完整回答
反对 回复 2022-10-25
  • 4 回答
  • 0 关注
  • 204 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信