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.6.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9998dbc8849cb31e568dc1b505299b7f344ed86464ec74de3b8e8be86b9fc97 |
|
MD5 | 31b70cf95d92a7dab8332b7e53328b3d |
|
BLAKE2b-256 | 51ba97fc7c7d9ec83b6a2dcd5a192e65ff4f9c68c61ca3c312f9343013077966 |