marshmallow-mongoengine
marshmallow-mongoengine copied to clipboard
Mongoengine integration with marshmallow
This is the error I got from running the code example on the Readme. I tried running the tests using pytest, and I got the same error. From other repo's...
The mongoengine validation of BinaryField makes it [clear](https://github.com/MongoEngine/mongoengine/blob/9490ad2bf79ae2d38c1f9df4a662ffe840dc80de/mongoengine/fields.py#L1621) that a valid field should either be of type `six.binary_type` or `bson.Binary`. However, the marshmallow-mongoengine conversion pushes mongoengine BinaryField data into the...
When trying to use one of these two, for load I get: `_make_object() got an unexpected keyword argument 'many'` For dump: `_remove_skip_values() got an unexpected keyword argument 'many'` Seems like...
Created a pull-request in the main repo. It's odd how there are issues here and nothing there ^_^. But probably would help someone, so sharing it here. It's super opinionated,...
Since the repo was transferred to [MongoEngine/marshmallow-mongoengine](https://github.com/MongoEngine/marshmallow-mongoengine), no "issues" tracker was created there. I suppose issues should be transferred and this tracker should be closed.
Doc indicates that the repo has been moved to [MongoEngine/marshmallow-mongoengine](https://github.com/MongoEngine/marshmallow-mongoengine), and the version over there has been bumped up to `0.10`… However, pip still points to this repo (and the...
Hi, how can I integrate a mongoengine document / a ModelSchema into swagger with flask-restplus ? Example: ````python import mongoengine as me import marshmallow_mongoengine as ma class Test(me.Document): order =...
Hi, how can I integrate marshmallow-monoengine in my flask-restful REST Api using pymongo (MongoClient) with auth-db as database connection ? How do I load data in this scenario ? Could...
Package Link In PyPI refers to this repo rather than the mongoengine repo @ https://github.com/MongoEngine/marshmallow-mongoengine Therefore installing the package via pip from PyPI only goes up to version 0.9.0, which...
I have defined a reference field, and was hoping that when I dump a document the data of the referenced field would be included already