Skip to content Skip to sidebar Skip to footer
Showing posts with the label 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

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

Override Field Schema Based On Data - Marshmallow

I'm just getting started with marshmallow so if there's a more elegant way to solve the iss… Read more Override Field Schema Based On Data - Marshmallow

Is It Possible To Validate List Using Marshmallow?

Is it possible to validate list using marshmallow? class SimpleListInput(Schema): items = field… Read more Is It Possible To Validate List Using Marshmallow?