serialchemy
serialchemy copied to clipboard
SQLAlchemy model serialization
Results
2
serialchemy issues
Sort by
recently updated
recently updated
newest added
Currently, all the fields of the model are serialized by default. It is possible to restrict the direction of the serialization with the `Field` parameters `load_only` and `dump_only`. There is...
Right now, if a model has a `polymorphic_identity` as an Enum, they keys of the `sub_serializers` are a dict who's keys are enums, so `self.sub_serializers.get(model_identity)` returns None because `model_identity` is...