Extended Marshmallow library
Project description
Marshmallow advanced Python library
Extra fields
Active field
Converts active
field to state
and back.
>>> from marshmallow_extended import Schema
>>> from marshmallow_extended.fields import Active
>>> 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.
Email field
Extended marshmallow.field.Email
field: lowering case.
>>> from marshmallow_extended import Schema
>>> from marshmallow_extended.fields import Email
>>> class SimpleSchema(Schema):
email = Email()
SimpleSchema().load({'email': 'Test@email.com'})
{'email': 'test@email.com'}
Changelog
1.3.1 (2021-06-10)
- Added
Enum
andIContains
fields. - Added
get_params
andapply_endpoint_params
decorators.
1.3.0 (2021-06-10)
- Added
Email
field.
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
marshmallow_extended-1.3.3.tar.gz
(10.5 kB
view hashes)
Close
Hashes for marshmallow_extended-1.3.3.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | f790fd4dec9506358284a2537cfa0bdb51d2bfbce4b0cfc807f4f75e881ee133 |
|
MD5 | ca341d7e606e1bb70f6de6ef31836c64 |
|
BLAKE2b-256 | dc12227e6f12a9e7e1ac93e83f4ea117f7de29f3401e7a806debf8f8a3f2d9f4 |