DEV Community

Discussion on: Flask with SQLAlchemy & Marshmallow

Collapse
 
nahidsaikat profile image
Md. Nahidur Rahman

There is not two ORMs, SQLAlchemy is the ORM but marshmallow is simplified object (de)serializer.

I used SQLAlchemy to handle DB things and marshmallow for the data serialization/de-serialization things.

You can learn more from their website, sqlalchemy.org/ marshmallow.readthedocs.io/en/stable/