123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- Metadata-Version: 2.1
- Name: marshmallow-sqlalchemy
- Version: 0.28.2
- Summary: SQLAlchemy integration with the marshmallow (de)serialization library
- Home-page: https://github.com/marshmallow-code/marshmallow-sqlalchemy
- Author: Steven Loria
- Author-email: sloria1@gmail.com
- License: MIT
- Project-URL: Changelog, https://marshmallow-sqlalchemy.readthedocs.io/en/latest/changelog.html
- Project-URL: Issues, https://github.com/marshmallow-code/marshmallow-sqlalchemy/issues
- Project-URL: Funding, https://opencollective.com/marshmallow
- Keywords: sqlalchemy marshmallow
- Classifier: Intended Audience :: Developers
- Classifier: License :: OSI Approved :: MIT License
- Classifier: Natural Language :: English
- Classifier: Programming Language :: Python :: 3.7
- Classifier: Programming Language :: Python :: 3.8
- Classifier: Programming Language :: Python :: 3.9
- Classifier: Programming Language :: Python :: 3.10
- Requires-Python: >=3.7
- License-File: LICENSE
- License-File: AUTHORS.rst
- Requires-Dist: marshmallow (>=3.0.0)
- Requires-Dist: SQLAlchemy (<2.0,>=1.3.0)
- Requires-Dist: packaging (>=21.3)
- Provides-Extra: dev
- Requires-Dist: pytest ; extra == 'dev'
- Requires-Dist: pytest-lazy-fixture (>=0.6.2) ; extra == 'dev'
- Requires-Dist: flake8 (==6.0.0) ; extra == 'dev'
- Requires-Dist: flake8-bugbear (==23.2.13) ; extra == 'dev'
- Requires-Dist: pre-commit (==3.1.0) ; extra == 'dev'
- Requires-Dist: tox ; extra == 'dev'
- Provides-Extra: docs
- Requires-Dist: sphinx (==6.1.3) ; extra == 'docs'
- Requires-Dist: alabaster (==0.7.13) ; extra == 'docs'
- Requires-Dist: sphinx-issues (==3.0.1) ; extra == 'docs'
- Provides-Extra: lint
- Requires-Dist: flake8 (==6.0.0) ; extra == 'lint'
- Requires-Dist: flake8-bugbear (==23.2.13) ; extra == 'lint'
- Requires-Dist: pre-commit (==3.1.0) ; extra == 'lint'
- Provides-Extra: tests
- Requires-Dist: pytest ; extra == 'tests'
- Requires-Dist: pytest-lazy-fixture (>=0.6.2) ; extra == 'tests'
- **********************
- marshmallow-sqlalchemy
- **********************
- |pypi-package| |build-status| |docs| |marshmallow3| |black|
- Homepage: https://marshmallow-sqlalchemy.readthedocs.io/
- `SQLAlchemy <http://www.sqlalchemy.org/>`_ integration with the `marshmallow <https://marshmallow.readthedocs.io/en/latest/>`_ (de)serialization library.
- Declare your models
- ===================
- .. code-block:: python
- import sqlalchemy as sa
- from sqlalchemy.ext.declarative import declarative_base
- from sqlalchemy.orm import scoped_session, sessionmaker, relationship, backref
- engine = sa.create_engine("sqlite:///:memory:")
- session = scoped_session(sessionmaker(bind=engine))
- Base = declarative_base()
- class Author(Base):
- __tablename__ = "authors"
- id = sa.Column(sa.Integer, primary_key=True)
- name = sa.Column(sa.String, nullable=False)
- def __repr__(self):
- return "<Author(name={self.name!r})>".format(self=self)
- 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)
- 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 instances
- id = auto_field()
- name = auto_field()
- books = auto_field()
- class BookSchema(SQLAlchemySchema):
- class Meta:
- model = Book
- load_instance = True
- id = 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 = True
- class BookSchema(SQLAlchemyAutoSchema):
- class Meta:
- model = Book
- include_fk = True
- load_instance = True
- Make sure to declare `Models` before instantiating `Schemas`. Otherwise `sqlalchemy.orm.configure_mappers() <https://docs.sqlalchemy.org/en/latest/orm/mapping_api.html>`_ 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)
- session.add(author)
- session.add(book)
- session.commit()
- dump_data = author_schema.dump(author)
- print(dump_data)
- # {'id': 1, 'name': 'Chuck Paluhniuk', 'books': [1]}
- load_data = author_schema.load(dump_data, session=session)
- print(load_data)
- # <Author(name='Chuck Paluhniuk')>
- Get it now
- ==========
- ::
- pip install -U marshmallow-sqlalchemy
- Requires Python >= 3.7, marshmallow >= 3.0.0, and SQLAlchemy >= 1.3.0.
- 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/issues
- License
- =======
- MIT licensed. See the bundled `LICENSE <https://github.com/marshmallow-code/marshmallow-sqlalchemy/blob/dev/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
- .. |marshmallow3| image:: https://badgen.net/badge/marshmallow/3
- :target: https://marshmallow.readthedocs.io/en/latest/upgrading.html
- :alt: marshmallow 3 compatible
- .. |black| image:: https://badgen.net/badge/code%20style/black/000
- :target: https://github.com/ambv/black
- :alt: code style: black
|