ethanhs / abserde

Generate fast JSON parsers based on type stubs
Apache License 2.0
13 stars 0 forks source link

Nested JSON #1

Closed ethanhs closed 5 years ago

ethanhs commented 5 years ago

It would be very useful to support something like the following:

class A:
    b: int

class B:
    c: int
    d: A

It seems we may need to implement Debug, FromPyObject, and maybe Clone? for the classes to make this work.

ethanhs commented 5 years ago

This was done recently.