Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
59 views

I'm trying to convert a json array to a Python list of typed objects. It's data from Teltonika FOTA The call result_list = fromlist(FotaDevice, intermediate_list) is failing with the error message ...
Hecatonchires's user avatar
3 votes
1 answer
607 views

Consider this following code: @dataclass class Subjects(JSONWizard): subjectName: str =None subjectExpert: str = None subjectScore: float = None @dataclass class Student(JSONWizard): ...
Sai Naveen's user avatar
3 votes
1 answer
678 views

I'm attempting to build a simple data-class example for YAML parsing which consists of recursive types. The YAML in question looks like this: --- folders: - name: a children: - name: b - ...
Naftuli Kay's user avatar
  • 92.8k