marshmallow-mongoengine icon indicating copy to clipboard operation
marshmallow-mongoengine copied to clipboard

Mongoengine integration with marshmallow

Results 2 marshmallow-mongoengine issues
Sort by recently updated
recently updated
newest added

Marshmallow has added native support for Enums which makes the conversion from ``me.EnumField`` to ``ma.Enum`` very straightforward. See https://marshmallow.readthedocs.io/en/stable/marshmallow.fields.html#marshmallow.fields.Enum. Addresses issue #20

Currently there is no support for [EnumField](https://github.com/MongoEngine/marshmallow-mongoengine/issues) that is mentioned in MongoEngine docs. For now attempting to use this field like this raises an exception: ``` import mongoengine from enum...