我有一个对象,它是dict
、list
、常规数据类型和decimal.Decimal
的嵌套混合。我想用pymongo将这个对象插入mongodb。pymongo拒绝插入Decimal.decimal
,因此我想将我的所有Decimal.decimal
转换为string
。
以前,您可以使用son_manipulator
来执行此操作,但现在是deprecated。
如何有效地将嵌套数据结构中的所有decimal.Decimal
对象转换为string
s?
最佳答案
亚马逊的dynamodb和boto3也有同样的问题。
def replace_decimals(obj):
if isinstance(obj, list):
for i in xrange(len(obj)):
obj[i] = replace_decimals(obj[i])
return obj
elif isinstance(obj, dict):
for k in obj.iterkeys():
obj[k] = replace_decimals(obj[k])
return obj
elif isinstance(obj, decimal.Decimal):
return str(obj)
# In my original code I'm converting to int or float, comment the line above if necessary.
if obj % 1 == 0:
return int(obj)
else:
return float(obj)
else:
return obj
关于python - 在嵌套的dict/list中转换Decimal.decimalvalues,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44146808/