Extended Marshmallow library
Project description
Marshmallow advanced Python library
Extra fields
Active field
Converts active
field to state
and back.
>>> class SimpleSchema(Schema):
active = Active()
>>> SimpleSchema().dump({'state': 'active'})
{'active': True})
>>> SimpleSchema().dump({'state': 'inactive'})
{'active': False}
>>> SimpleSchema().load({'active': True})
{'state': 'active'}
>>> SimpleSchema().load({'active': False})
{'state': 'inactive'}
Filter by query parameter:
>>> class SimpleFilterSchema(Schema):
active = Active(as_filter=True)
>>> SimpleFilterSchema().load({'active': 'true'})
{'state': 'active'}
>>> SimpleFilterSchema().load({'active': 'false'})
{'state': 'inactive'}
>>> SimpleFilterSchema().load({})
{'state__ne': 'deleted'}
For experienced usage try positives
, negatives
, positive_filter
,
negative_filter
, missing_filter
parameters. You can see behaviour for this parameters in tests.
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
Close
Hashes for marshmallow_extended-1.2.5.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5137b4197ef021d583b3262c22c8ef2ee4d95d77529b73367ce86b107ce6c04f |
|
MD5 | a1d867529648f7505d4fa6b426520128 |
|
BLAKE2b-256 | 617104fd563c5a8c12161df912cf3d5c7d133159c5ab92a8c04d6691b3dbcac7 |