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.2.tar.gz
(10.5 kB
view hashes)
Close
Hashes for marshmallow_extended-1.3.2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa41b1cac96c948fa044a94dd1f177016cfadaeb0ca0ce549e00e64faf7926be |
|
MD5 | 088fe5cac2cb52669e4ced5042cd9ab0 |
|
BLAKE2b-256 | 836f7b6f94b177f14a965d53015d81f5232a0c6a9ad8f15cb064595df2323c2b |