nvelope icon indicating copy to clipboard operation
nvelope copied to clipboard

Define your JSON schema as Python dataclasses

Results 1 nvelope issues
Sort by recently updated
recently updated
newest added

From readme I see ```py @dataclass class User(Obj): _conversion = { "id": int_conv, "language_code": string_conv, "username": string_conv, } id: int language_code: str username: str ``` Which makes me curious on...