flask-marshmallow
flask-marshmallow copied to clipboard
Flask + marshmallow for beautiful APIs
Fixes: #242 Fixes the distutils deprecation warning by using packaging.version
Hello, It's been a while since the last release. Can we tag a new release, please? TIA.
I wasn't able to find this in the docs, but what is the recommended way to use this library with the Flask factory pattern? My approach was to initialize the...
Hi Team - Love the repo and thank you. As you can imagine, once you begin to create larger and larger applications, the number of routes, models and schemas begin...
when i use schema.dump , i get Python object instead of MarshalResult. But the old version, when using find ModelSchema, return MarshalResult. How to return MarshalResult when use SQLAlchemyAutoSchema?
Couldn't find an issue for this yet, but in py3.10 there's a warning about distutils. Should be an easy transition. ``` /usr/local/lib/python3.10/site-packages/flask_marshmallow/__init__.py:10: DeprecationWarning: The distutils package is deprecated and slated...
I have an SQLAlchemy mode with a `Numeric` column as in the following example ``` db = flask_sqlalchemy.SQLAlchemy() ma = flask_marshmallow.Marshmallow() class Project(db.Model): budget = db.Column(db.Numeric) class ProjectSchema(ma.SQLAlchemyAutoSchema): class Meta:...
We have been using flask-marshmallow 0.6.0 with marshmallow-sqlalchemy 0.3.0 for some time now, and been quite happy. However, in trying to upgrade our packages we have encountered the error message...
For some reason HyperlinkRelated seems to create an invalid endpoint with HyperlinkRelated which Flask rejects: `Exception has occurred: BuildError (note: full exception trace is shown but execution is paused at:...