How can I convert a TypedObject to a nested dictionary in Python?

208 Views Asked by At

I am using pyAMF and I do receive a TypedObject that is in fact a nested dictionary. I want to convert this to a python dictionary.

1

There are 1 best solutions below

4
samplebias On BEST ANSWER

You should be able to wrap it in dict(obj) or call obj.copy() to convert it:

>>> type(o)
<class 'pyamf.TypedObject'>
>>> type(o.copy())
<type 'dict'>
>>> o.copy()
{'abc': 123}