marshmallow-mongoengine
marshmallow-mongoengine copied to clipboard
Mongoengine integration with marshmallow
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...