Skip to content Skip to sidebar Skip to footer
Showing posts with the label Marshmallow

Python Marshmallow - Customize Formatting Of Class Member

I have Marshmallow serializer written as class TestSchema(Schema): created_date = fields.Str(r… Read more Python Marshmallow - Customize Formatting Of Class Member

Marshmallow: Convert Dict To Tuple

Given that the input data x are: {'comm_name': 'XXX', 'comm_value': '12… Read more Marshmallow: Convert Dict To Tuple

Flask's Jsonify Function Inconsistent With Flask-marshmallow

I am developing an API using flask-RESTful and am having an issue with Flask's jsonify function… Read more Flask's Jsonify Function Inconsistent With Flask-marshmallow

Marshmallow Result Customization

I have the sqlalchemy model with jsonb field and marshmallow schema for this model: class Settings(… Read more Marshmallow Result Customization

Sqlalchemy @property Causes 'unknown Field' Error In Marshmallow With Dump_only

I'm using flask-marshmallow (marshmallow=v3.0.0rc1, flask-marshmallow=0.9.0) and flask-sqlalche… Read more Sqlalchemy @property Causes 'unknown Field' Error In Marshmallow With Dump_only