serde icon indicating copy to clipboard operation
serde copied to clipboard

:monorail: (unmaintained) A framework for defining, serializing, deserializing, and validating data structures

Results 13 serde issues
Sort by recently updated
recently updated
newest added

Compared to the comparable library in [Rust](https://serde.rs/), this package lacks support for [Transparent](https://serde.rs/container-attrs.html#transparent) and [Alias](https://serde.rs/field-attrs.html#alias) fields. Adding support for these two features would increase interoperability with serialized data from projects...

feature

I'm not sure if the serde field type annotations are compatible with MyPy. For example, with this code: ```python from serde import Model, fields class Artist(Model): name: fields.Str() ``` Running...

feature

This would allow variable arguments for serialize, deserialize, and validate methods. This is to faciliate cases where Field serialization, deserialization, and validation is dependent for example on the parent model....

feature