You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
IonPyDict is the returned type of loads() method. However, a lot of data library like pandas, polars works with native python library only, is there a convenient way to convert all value of IonPyDict into native Python value?
The text was updated successfully, but these errors were encountered:
For context, this appears to be a follow-up from #362
My suggestion there was to use the IonPyValueModel.STRUCT_AS_STD_DICT which should result in Ion Structs deserializing to IonPyStdDict objects (which inherit from dict).
If that solution doesn't work for you, please help me understand why not and what you need instead.
IonPyDict is the returned type of
loads()
method. However, a lot of data library like pandas, polars works with native python library only, is there a convenient way to convert all value of IonPyDict into native Python value?The text was updated successfully, but these errors were encountered: