SQLAlchemy integration with the marshmallow (de)serialization library
Project description
Homepage: http://marshmallow-sqlalchemy.rtfd.org/
SQLAlchemy integration with the marshmallow (de)serialization library.
Declare your models
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)
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
from marshmallow_sqlalchemy import ModelSchema
class AuthorSchema(ModelSchema):
class Meta:
model = Author
class BookSchema(ModelSchema):
class Meta:
model = Book
# optionally attach a Session
# to use for deserialization
sqla_session = session
author_schema = AuthorSchema()
(De)serialize your data
author = Author(name='Chuck Paluhniuk')
book = Book(title='Fight Club', author=author)
session.add(author)
session.add(book)
session.commit()
author_schema.dump(author).data
# {'books': [123], 'id': 321, 'name': 'Chuck Paluhniuk'}
author_schema.load(dump_data, session=session).data
# <Author(name='Chuck Paluhniuk')>
Get it now
pip install -U marshmallow-sqlalchemy
Documentation
Documentation is available at http://marshmallow-sqlalchemy.readthedocs.org/ .
Project Links
License
MIT licensed. See the bundled LICENSE file for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file marshmallow-sqlalchemy-0.5.0.tar.gz
.
File metadata
- Download URL: marshmallow-sqlalchemy-0.5.0.tar.gz
- Upload date:
- Size: 34.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 09d258c199428cb3709d7252e9c4c6b33ccf1d9f2dc39ba703349dc015ec91e3 |
|
MD5 | 8bc70fd5444f1eee4934218c7b19f2cf |
|
BLAKE2b-256 | bb2d52a6180151d815d3fb08d582954fabf47badb5449c9fed9c661364d5f02e |
Provenance
File details
Details for the file marshmallow_sqlalchemy-0.5.0-py2.py3-none-any.whl
.
File metadata
- Download URL: marshmallow_sqlalchemy-0.5.0-py2.py3-none-any.whl
- Upload date:
- Size: 11.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a3116d04f97cf45de335ae09227232640f1bed6b58a18e2d3ea9c155b0daffa4 |
|
MD5 | 8e4c7be2646e0a51254cbabdd134658a |
|
BLAKE2b-256 | 3e1becc288276ad7525a73c965a45dd517b25ca510ffc1cc88adb8ed5eb84faf |