DEV Community

Discussion on: Flask with SQLAlchemy & Marshmallow

Collapse
 
agathver profile image
Amitosh Swain Mahapatra

Instead of this:

title = request.json.get('title', '')
content = request.json.get('content', '')
Enter fullscreen mode Exit fullscreen mode

You could use note_schema.load() to directly load request.json to marshmallow as well

Collapse
 
nahidsaikat profile image
Md. Nahidur Rahman

Yes, that will be better I think.