Peewee integration with the marshmallow (de)serialization library.
Project description
Marshmallow-Peewee – Peewee integration with the Marshmallow (de)serialization library.
import peewee as pw
class Role(pw.Model):
name = pw.CharField(255, default='user')
class User(pw.Model):
created = pw.DateTimeField(default=dt.datetime.now())
name = pw.CharField(255)
title = pw.CharField(127, null=True)
active = pw.BooleanField(default=True)
rating = pw.IntegerField(default=0)
role = pw.ForeignKeyField(Role)
from marshmallow_peewee import ModelSchema
class UserSchema(ModelSchema):
class Meta:
model = User
role = Role.create()
user = User.create(name='Mike', role=role)
result, errors = UserSchema().dump(user)
print(result)
# {'active': True,
# 'created': '2016-03-29T15:27:18.600034+00:00',
# 'id': 1,
# 'name': 'Mike',
# 'rating': 0,
# 'role': 1,
# 'title': None}
result, errors = UserSchema().load(result)
assert isinstance(result, User)
assert result.name == 'Mike'
from marshmallow_peewee import Related
class UserSchema(ModelSchema):
role = Related()
class Meta:
model = User
result, errors = UserSchema().dump(user)
print(result)
# {'active': True,
# 'created': '2016-03-29T15:30:32.767483+00:00',
# 'id': 1,
# 'name': 'Mike',
# 'rating': 0,
# 'role': {'id': 5, 'name': 'user'},
# 'title': None}
result, errors = UserSchema().load(result)
assert not errors
assert isinstance(result, User)
assert isinstance(result.role, Role)
Requirements
python 2.7+,3.4+
Installation
Marshmallow-Peewee should be installed using pip:
pip install Marshmallow-Peewee
Usage
import peewee as pw
class Role(pw.Model):
name = pw.CharField(255, default='user')
class User(pw.Model):
created = pw.DateTimeField(default=dt.datetime.now())
name = pw.CharField(255)
title = pw.CharField(127, null=True)
active = pw.BooleanField(default=True)
rating = pw.IntegerField(default=0)
role = pw.ForeignKeyField(Role)
from marshmallow_peewee import ModelSchema
class UserSchema(ModelSchema):
class Meta:
# model: Bind peewee.Model to the Schema
model = User
# model_converter: Use custom model_converter
# model_converter = marshmallow_peewee.ModelConverter
# dump_only_pk: Primary key is dump only
# dump_only_pk = True
Bug tracker
If you have any suggestions, bug reports or annoyances please report them to the issue tracker at https://github.com/klen/marshmallow-peewee/issues
Contributing
Development of The Marshmallow-Peewee happens at: https://github.com/klen/marshmallow-peewee
Contributors
License
Licensed under a MIT license (See LICENSE)
If you wish to express your appreciation for the project, you are welcome to send a postcard to:
Kirill Klenov pos. Severny 8-3 MO, Istra, 143500 Russia
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-Peewee-1.2.7.tar.gz
.
File metadata
- Download URL: Marshmallow-Peewee-1.2.7.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0cba66ff694958fcb6e6eb409a3a8af2e730096d058436a958aecbd99bd70071 |
|
MD5 | d674cd7aec62baf38a2b1b47f088ff53 |
|
BLAKE2b-256 | 225e8c3bf2bbc41a8bf9253d03964023fa25cb6aaca70eab855036bde700fd60 |
File details
Details for the file Marshmallow_Peewee-1.2.7-py2.py3-none-any.whl
.
File metadata
- Download URL: Marshmallow_Peewee-1.2.7-py2.py3-none-any.whl
- Upload date:
- Size: 8.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d239c8c773a7f39157a957e4194c9dc184b1dfcc357a5e153f4a59f3dce885f |
|
MD5 | a346bc248f6523cb6869e019ed1a1a69 |
|
BLAKE2b-256 | 3a9e08c27cf1f59122c2d2817f7561399307200b7fbbf8dbc486fd0840d3ffc0 |