Union fields for marshmallow.
Project description
Union fields for marshmallow.
Free software: MIT license
Warning
This library works by trying a list of fields one by one, and (de)serializing with the first one not to raise an error. The type of the values is not taken into account, so if one of the fields in the union accepts values of an unexpected type, they will be used for serialization. This can lead to a surprising behavior, because :
u = Union(fields=[fields.Integer(), fields.String()]) # the Integer field accepts string representations of integers type(u.deserialize('0')) # -> int
If you want to have precise control of which field will be used for which value, you can use marshmallow-polyfield instead of this library.
Documentation
https://python-marshmallow-union.readthedocs.io/
0.1.15 (2020-05-30)
Changes
Fix #32 : Never ignore the value passed to _serialize. Notably, this fixes the serialization of lists of unions, such as List(Union([Int(), String()]))
0.1.12 (2019-10-24)
Backward-incompatible Changes
On serialization, marshmallow_union.ExceptionGroup is raised if all candidate fields fail. #24
0.1.11 (2019-06-19)
Changes
Override the underscore-prefixed methods instead of the plain ones #22
Changelog
0.1.10 (2019-06-08)
Changes
Use Towncrier for changelog. #18
0.1.0 (2019-06-07)
First release on PyPI.
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-union-0.1.15.post1.tar.gz
.
File metadata
- Download URL: marshmallow-union-0.1.15.post1.tar.gz
- Upload date:
- Size: 17.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c08f0a87891ae73dd2b5d4a154bc7daea20c3bc0f99ca0b6a26570c927d20c8c |
|
MD5 | 1e6c656d702df6b7faa22b49a356b4fb |
|
BLAKE2b-256 | f4b33b2adcebc922d147637e18866bbce107dc3c0938e715c003697bbab2e9bf |
File details
Details for the file marshmallow_union-0.1.15.post1-py2.py3-none-any.whl
.
File metadata
- Download URL: marshmallow_union-0.1.15.post1-py2.py3-none-any.whl
- Upload date:
- Size: 4.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1e21b759c76735305f99179c1a16759ebb9629733159628241b3f2117ff55e86 |
|
MD5 | 52a8b20dff6c19ba9d417512bb556a98 |
|
BLAKE2b-256 | 6db71f3c4575b488435c91c7bf25598ea6d22ae09b55cf1724320f4bd451323d |