https://github.com/marshmallow-code/marshmallow-sqlalchemy
SQLAlchemy integration with marshmallow
https://github.com/marshmallow-code/marshmallow-sqlalchemy
marshmallow python python-3 sqlalchemy
Last synced: 6 days ago
JSON representation
SQLAlchemy integration with marshmallow
- Host: GitHub
- URL: https://github.com/marshmallow-code/marshmallow-sqlalchemy
- Owner: marshmallow-code
- License: mit
- Created: 2015-04-26T18:16:28.000Z (almost 10 years ago)
- Default Branch: dev
- Last Pushed: 2024-10-14T18:42:11.000Z (6 months ago)
- Last Synced: 2024-10-29T15:11:35.073Z (6 months ago)
- Topics: marshmallow, python, python-3, sqlalchemy
- Language: Python
- Homepage: https://marshmallow-sqlalchemy.readthedocs.io
- Size: 657 KB
- Stars: 558
- Watchers: 19
- Forks: 95
- Open Issues: 64
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
- Security: SECURITY.md
- Authors: AUTHORS.rst
Awesome Lists containing this project
- jimsghstars - marshmallow-code/marshmallow-sqlalchemy - SQLAlchemy integration with marshmallow (Python)
README
**********************
marshmallow-sqlalchemy
**********************|pypi-package| |build-status| |docs| |marshmallow-support|
Homepage: https://marshmallow-sqlalchemy.readthedocs.io/
`SQLAlchemy `_ integration with the `marshmallow `_ (de)serialization library.
Declare your models
===================.. code-block:: python
import sqlalchemy as sa
from sqlalchemy.orm import (
DeclarativeBase,
backref,
relationship,
sessionmaker,
)from marshmallow_sqlalchemy import SQLAlchemySchema, auto_field
engine = sa.create_engine("sqlite:///:memory:")
Session = sessionmaker(engine)class Base(DeclarativeBase):
passclass Author(Base):
__tablename__ = "authors"
id = sa.Column(sa.Integer, primary_key=True)
name = sa.Column(sa.String, nullable=False)def __repr__(self):
return f""class Book(Base):
__tablename__ = "books"
id = sa.Column(sa.Integer, primary_key=True)
title = sa.Column(sa.String)
author_id = sa.Column(sa.Integer, sa.ForeignKey("authors.id"))
author = relationship("Author", backref=backref("books"))Base.metadata.create_all(engine)
.. start elevator-pitch
Generate marshmallow schemas
============================.. code-block:: python
from marshmallow_sqlalchemy import SQLAlchemySchema, auto_field
class AuthorSchema(SQLAlchemySchema):
class Meta:
model = Author
load_instance = True # Optional: deserialize to model instancesid = auto_field()
name = auto_field()
books = auto_field()class BookSchema(SQLAlchemySchema):
class Meta:
model = Book
load_instance = Trueid = auto_field()
title = auto_field()
author_id = auto_field()You can automatically generate fields for a model's columns using `SQLAlchemyAutoSchema`.
The following schema classes are equivalent to the above... code-block:: python
from marshmallow_sqlalchemy import SQLAlchemyAutoSchema
class AuthorSchema(SQLAlchemyAutoSchema):
class Meta:
model = Author
include_relationships = True
load_instance = Trueclass BookSchema(SQLAlchemyAutoSchema):
class Meta:
model = Book
include_fk = True
load_instance = TrueMake sure to declare `Models` before instantiating `Schemas`. Otherwise `sqlalchemy.orm.configure_mappers() `_ will run too soon and fail.
(De)serialize your data
=======================.. code-block:: python
author = Author(name="Chuck Paluhniuk")
author_schema = AuthorSchema()
book = Book(title="Fight Club", author=author)with Session() as session:
session.add(author)
session.add(book)
session.commit()dump_data = author_schema.dump(author)
print(dump_data)
# {'id': 1, 'name': 'Chuck Paluhniuk', 'books': [1]}with Session() as session:
load_data = author_schema.load(dump_data, session=session)
print(load_data)
#Get it now
==========.. code-block:: shell-session
$ pip install -U marshmallow-sqlalchemy
Requires Python >= 3.9, marshmallow >= 3.18.0, and SQLAlchemy >= 1.4.40.
.. end elevator-pitch
Documentation
=============Documentation is available at https://marshmallow-sqlalchemy.readthedocs.io/ .
Project links
=============- Docs: https://marshmallow-sqlalchemy.readthedocs.io/
- Changelog: https://marshmallow-sqlalchemy.readthedocs.io/en/latest/changelog.html
- Contributing Guidelines: https://marshmallow-sqlalchemy.readthedocs.io/en/latest/contributing.html
- PyPI: https://pypi.python.org/pypi/marshmallow-sqlalchemy
- Issues: https://github.com/marshmallow-code/marshmallow-sqlalchemy/issuesLicense
=======MIT licensed. See the bundled `LICENSE `_ file for more details.
.. |pypi-package| image:: https://badgen.net/pypi/v/marshmallow-sqlalchemy
:target: https://pypi.org/project/marshmallow-sqlalchemy/
:alt: Latest version
.. |build-status| image:: https://github.com/marshmallow-code/marshmallow-sqlalchemy/actions/workflows/build-release.yml/badge.svg
:target: https://github.com/marshmallow-code/marshmallow-sqlalchemy/actions/workflows/build-release.yml
:alt: Build status
.. |docs| image:: https://readthedocs.org/projects/marshmallow-sqlalchemy/badge/
:target: http://marshmallow-sqlalchemy.readthedocs.io/
:alt: Documentation
.. |marshmallow-support| image:: https://badgen.net/badge/marshmallow/3,4?list=1
:target: https://marshmallow.readthedocs.io/en/latest/upgrading.html
:alt: marshmallow 3|4 compatible