API Reference¶
Schema¶
-
class
marshmallow.Schema(*, only=None, exclude=(), many=False, context=None, load_only=(), dump_only=(), partial=False, unknown=None)[source]¶ Base schema class with which to define custom schemas.
Example usage:
import datetime as dt from marshmallow import Schema, fields class Album: def __init__(self, title, release_date): self.title = title self.release_date = release_date class AlbumSchema(Schema): title = fields.Str() release_date = fields.Date() # Or, equivalently class AlbumSchema2(Schema): class Meta: fields = ("title", "release_date") album = Album("Beggars Banquet", dt.date(1968, 12, 6)) schema = AlbumSchema() data = schema.dump(album) data # {'release_date': '1968-12-06', 'title': 'Beggars Banquet'}
Parameters: - only (tuple|list) – Whitelist of the declared fields to select when instantiating the Schema. If None, all fields are used. Nested fields can be represented with dot delimiters.
- exclude (tuple|list) – Blacklist of the declared fields to exclude
when instantiating the Schema. If a field appears in both
onlyandexclude, it is not used. Nested fields can be represented with dot delimiters. - many (bool) – Should be set to
Trueifobjis a collection so that the object will be serialized to a list. - context (dict) – Optional context passed to
fields.Methodandfields.Functionfields. - load_only (tuple|list) – Fields to skip during serialization (write-only fields)
- dump_only (tuple|list) – Fields to skip during deserialization (read-only fields)
- partial (bool|tuple) – Whether to ignore missing fields and not require
any fields declared. Propagates down to
Nestedfields as well. If its value is an iterable, only missing fields listed in that iterable will be ignored. Use dot delimiters to specify nested fields. - unknown – Whether to exclude, include, or raise an error for unknown
fields in the data. Use
EXCLUDE,INCLUDEorRAISE.
Changed in version 3.0.0:
prefixparameter removed.Changed in version 2.0.0:
__validators__,__preprocessors__, and__data_handlers__are removed in favor ofmarshmallow.decorators.validates_schema,marshmallow.decorators.pre_loadandmarshmallow.decorators.post_dump.__accessor__and__error_handler__are deprecated. Implement thehandle_errorandget_attributemethods instead.-
class
Meta¶ Options object for a Schema.
Example usage:
class Meta: fields = ("id", "email", "date_created") exclude = ("password", "secret_attribute")
Available options:
fields: Tuple or list of fields to include in the serialized result.additional: Tuple or list of fields to include in addition to the- explicitly declared fields.
additionalandfieldsare mutually-exclusive options.
include: Dictionary of additional fields to include in the schema. It is- usually better to define fields as class variables, but you may need to
use this option, e.g., if your fields are Python keywords. May be an
OrderedDict.
exclude: Tuple or list of fields to exclude in the serialized result.- Nested fields can be represented with dot delimiters.
dateformat: Default format forDatefields.datetimeformat: Default format forDateTimefields.ordered: IfTrue, order serialization output according to the- order in which fields were declared. Output of
Schema.dumpwill be acollections.OrderedDict.
index_errors: IfTrue, errors dictionaries will include the index- of invalid items in a collection.
load_only: Tuple or list of fields to exclude from serialized results.dump_only: Tuple or list of fields to exclude from deserializationunknown: Whether to exclude, include, or raise an error for unknown- fields in the data. Use
EXCLUDE,INCLUDEorRAISE.
-
OPTIONS_CLASS¶ alias of
SchemaOpts
-
dump(obj, *, many=None)¶ Serialize an object to native Python data types according to this Schema’s fields.
Parameters: - obj – The object to serialize.
- many (bool) – Whether to serialize
objas a collection. IfNone, the value forself.manyis used.
Returns: A dict of serialized data
Return type: dict
New in version 1.0.0.
Changed in version 3.0.0b7: This method returns the serialized data rather than a
(data, errors)duple. AValidationErroris raised ifobjis invalid.Changed in version 3.0.0rc9: Validation no longer occurs upon serialization.
-
dumps(obj, *args, many=None, **kwargs)¶ Same as
dump(), except return a JSON-encoded string.Parameters: - obj – The object to serialize.
- many (bool) – Whether to serialize
objas a collection. IfNone, the value forself.manyis used.
Returns: A
jsonstringReturn type: str
New in version 1.0.0.
Changed in version 3.0.0b7: This method returns the serialized data rather than a
(data, errors)duple. AValidationErroris raised ifobjis invalid.
-
classmethod
from_dict(fields: Dict[str, Union[marshmallow.fields.Field, typing.Type]], *, name: str = 'GeneratedSchema') → Type[_ForwardRef('Schema')]¶ Generate a
Schemaclass given a dictionary of fields.from marshmallow import Schema, fields PersonSchema = Schema.from_dict({"name": fields.Str()}) print(PersonSchema().load({"name": "David"})) # => {'name': 'David'}
Generated schemas are not added to the class registry and therefore cannot be referred to by name in
Nestedfields.Parameters: - fields (dict) – Dictionary mapping field names to field instances.
- name (str) – Optional name for the class, which will appear in
the
reprfor the class.
New in version 3.0.0.
-
get_attribute(obj, attr, default)¶ Defines how to pull values from an object to serialize.
New in version 2.0.0.
Changed in version 3.0.0a1: Changed position of
objandattr.
-
handle_error(error, data, *, many, **kwargs)¶ Custom error handler function for the schema.
Parameters: - error (ValidationError) – The
ValidationErrorraised during (de)serialization. - data – The original input data.
- many (bool) – Value of
manyon dump or load. - partial (bool) – Value of
partialon load.
New in version 2.0.0.
Changed in version 3.0.0rc9: Receives
manyandpartial(on deserialization) as keyword arguments.- error (ValidationError) – The
-
load(data, *, many=None, partial=None, unknown=None)¶ Deserialize a data structure to an object defined by this Schema’s fields.
Parameters: - data (dict) – The data to deserialize.
- many (bool) – Whether to deserialize
dataas a collection. IfNone, the value forself.manyis used. - partial (bool|tuple) – Whether to ignore missing fields and not require
any fields declared. Propagates down to
Nestedfields as well. If its value is an iterable, only missing fields listed in that iterable will be ignored. Use dot delimiters to specify nested fields. - unknown – Whether to exclude, include, or raise an error for unknown
fields in the data. Use
EXCLUDE,INCLUDEorRAISE. IfNone, the value forself.unknownis used.
Returns: A dict of deserialized data
Return type: dict
New in version 1.0.0.
Changed in version 3.0.0b7: This method returns the deserialized data rather than a
(data, errors)duple. AValidationErroris raised if invalid data are passed.
-
loads(json_data, *, many=None, partial=None, unknown=None, **kwargs)¶ Same as
load(), except it takes a JSON string as input.Parameters: - json_data (str) – A JSON string of the data to deserialize.
- many (bool) – Whether to deserialize
objas a collection. IfNone, the value forself.manyis used. - partial (bool|tuple) – Whether to ignore missing fields and not require
any fields declared. Propagates down to
Nestedfields as well. If its value is an iterable, only missing fields listed in that iterable will be ignored. Use dot delimiters to specify nested fields. - unknown – Whether to exclude, include, or raise an error for unknown
fields in the data. Use
EXCLUDE,INCLUDEorRAISE. IfNone, the value forself.unknownis used.
Returns: A dict of deserialized data
Return type: dict
New in version 1.0.0.
Changed in version 3.0.0b7: This method returns the deserialized data rather than a
(data, errors)duple. AValidationErroris raised if invalid data are passed.
-
on_bind_field(field_name, field_obj)¶ Hook to modify a field when it is bound to the
Schema.No-op by default.
-
validate(data, *, many=None, partial=None)¶ Validate
dataagainst the schema, returning a dictionary of validation errors.Parameters: - data (dict) – The data to validate.
- many (bool) – Whether to validate
dataas a collection. IfNone, the value forself.manyis used. - partial (bool|tuple) – Whether to ignore missing fields and not require
any fields declared. Propagates down to
Nestedfields as well. If its value is an iterable, only missing fields listed in that iterable will be ignored. Use dot delimiters to specify nested fields.
Returns: A dictionary of validation errors.
Return type: dict
New in version 1.1.0.
Fields¶
Field classes for various types of data.
-
class
marshmallow.fields.Field(*, default: Any = <marshmallow.missing>, missing: Any = <marshmallow.missing>, data_key: str = None, attribute: str = None, validate: Union[typing.Callable[[typing.Any], typing.Any], typing.Sequence[typing.Callable[[typing.Any], typing.Any]], typing.Generator[typing.Callable[[typing.Any], typing.Any], NoneType, NoneType]] = None, required: bool = False, allow_none: bool = None, load_only: bool = False, dump_only: bool = False, error_messages: Dict[str, str] = None, **metadata)[source]¶ Basic field from which other fields should extend. It applies no formatting by default, and should only be used in cases where data does not need to be formatted before being serialized or deserialized. On error, the name of the field will be returned.
Parameters: - default – If set, this value will be used during serialization if the input value is missing. If not set, the field will be excluded from the serialized output if the input value is missing. May be a value or a callable.
- missing – Default deserialization value for the field if the field is not found in the input data. May be a value or a callable.
- data_key – The name of the dict key in the external representation, i.e.
the input of
loadand the output ofdump. IfNone, the key will match the name of the field. - attribute – The name of the attribute to get the value from when serializing.
If
None, assumes the attribute has the same name as the field. Note: This should only be used for very specific use cases such as outputting multiple fields for a single attribute. In most cases, you should usedata_keyinstead. - validate – Validator or collection of validators that are called
during deserialization. Validator takes a field’s input value as
its only parameter and returns a boolean.
If it returns
False, anValidationErroris raised. - required – Raise a
ValidationErrorif the field value is not supplied during deserialization. - allow_none – Set this to
TrueifNoneshould be considered a valid value during validation/deserialization. Ifmissing=Noneandallow_noneis unset, will default toTrue. Otherwise, the default isFalse. - load_only – If
Trueskip this field during serialization, otherwise its value will be present in the serialized data. - dump_only – If
Trueskip this field during deserialization, otherwise its value will be present in the deserialized object. In the context of an HTTP API, this effectively marks the field as “read-only”. - error_messages (dict) – Overrides for
Field.default_error_messages. - metadata – Extra arguments to be stored as metadata.
Changed in version 2.0.0: Removed
errorparameter. Useerror_messagesinstead.Changed in version 2.0.0: Added
allow_noneparameter, which makes validation/deserialization ofNoneconsistent across fields.Changed in version 2.0.0: Added
load_onlyanddump_onlyparameters, which allow field skipping during the (de)serialization process.Changed in version 2.0.0: Added
missingparameter, which indicates the value for a field if the field is not found during deserialization.Changed in version 2.0.0:
defaultvalue is only used if explicitly set. Otherwise, missing values inputs are excluded from serialized output.Changed in version 3.0.0b8: Add
data_keyparameter for the specifying the key in the input and output data. This parameter replaced bothload_fromanddump_to.-
_bind_to_schema(field_name, schema)[source]¶ Update field with values from its parent schema. Called by
Schema._bind_field.Parameters: - field_name (str) – Field name set in schema.
- schema (Schema) – Parent schema.
-
_deserialize(value: Any, attr: Union[str, NoneType], data: Union[typing.Dict[str, typing.Any], NoneType], **kwargs)[source]¶ Deserialize value. Concrete
Fieldclasses should implement this method.Parameters: - value – The value to be deserialized.
- attr – The attribute/key in
datato be deserialized. - data – The raw input data passed to the
Schema.load. - kwargs – Field-specific keyword arguments.
Raises: ValidationError – In case of formatting or validation failure.
Returns: The deserialized value.
Changed in version 2.0.0: Added
attranddataparameters.Changed in version 3.0.0: Added
**kwargsto signature.
-
_serialize(value: Any, attr: str, obj: Any, **kwargs)[source]¶ Serializes
valueto a basic Python datatype. Noop by default. ConcreteFieldclasses should implement this method.Example:
class TitleCase(Field): def _serialize(self, value, attr, obj, **kwargs): if not value: return '' return str(value).title()
Parameters: - value – The value to be serialized.
- attr (str) – The attribute or key on the object to be serialized.
- obj (object) – The object the value was pulled from.
- kwargs (dict) – Field-specific keyword arguments.
Returns: The serialized value
-
_validate(value)[source]¶ Perform validation on
value. Raise aValidationErrorif validation does not succeed.
-
_validate_missing(value)[source]¶ Validate missing values. Raise a
ValidationErrorifvalueshould be considered missing.
-
context¶ The context dictionary for the parent
Schema.
-
default_error_messages= {'null': 'Field may not be null.', 'required': 'Missing data for required field.', 'validator_failed': 'Invalid value.'}¶ Default error messages for various kinds of errors. The keys in this dictionary are passed to
Field.make_error. The values are error messages passed tomarshmallow.exceptions.ValidationError.
-
deserialize(value: Any, attr: str = None, data: Dict[str, Any] = None, **kwargs)[source]¶ Deserialize
value.Parameters: - value – The value to deserialize.
- attr – The attribute/key in
datato deserialize. - data – The raw input data passed to
Schema.load. - kwargs – Field-specific keyword arguments.
Raises: ValidationError – If an invalid value is passed or if a required value is missing.
-
fail(key: str, **kwargs)[source]¶ Helper method that raises a
ValidationErrorwith an error message fromself.error_messages.Deprecated since version 3.0.0: Use
make_errorinstead.
-
get_value(obj, attr, accessor=None, default=<marshmallow.missing>)[source]¶ Return the value for a given key from an object.
Parameters: - obj (object) – The object to get the value from.
- attr (str) – The attribute/key in
objto get the value from. - accessor (callable) – A callable used to retrieve the value of
attrfrom the objectobj. Defaults tomarshmallow.utils.get_value.
-
make_error(key: str, **kwargs) → marshmallow.exceptions.ValidationError[source]¶ Helper method to make a
ValidationErrorwith an error message fromself.error_messages.
-
root¶ Reference to the
Schemathat this field belongs to even if it is buried in a container field (e.g.List). ReturnNonefor unbound fields.
-
serialize(attr: str, obj: Any, accessor: Callable[[Any, str, Any], Any] = None, **kwargs)[source]¶ Pulls the value for the given key from the object, applies the field’s formatting and returns the result.
Parameters: - attr – The attribute/key to get from the object.
- obj – The object to access the attribute/key from.
- accessor – Function used to access values from
obj. - kwargs – Field-specific keyword arguments.
-
class
marshmallow.fields.Raw(*, default: Any = <marshmallow.missing>, missing: Any = <marshmallow.missing>, data_key: str = None, attribute: str = None, validate: Union[typing.Callable[[typing.Any], typing.Any], typing.Sequence[typing.Callable[[typing.Any], typing.Any]], typing.Generator[typing.Callable[[typing.Any], typing.Any], NoneType, NoneType]] = None, required: bool = False, allow_none: bool = None, load_only: bool = False, dump_only: bool = False, error_messages: Dict[str, str] = None, **metadata)[source]¶ Field that applies no formatting.
-
class
marshmallow.fields.Nested(nested: Union[marshmallow.base.SchemaABC, typing.Type[marshmallow.base.SchemaABC], str], *, default: Any = <marshmallow.missing>, only: Union[typing.Sequence, typing.Set] = None, exclude: Union[typing.Sequence, typing.Set] = (), many: bool = False, unknown: str = None, **kwargs)[source]¶ Allows you to nest a
Schemainside a field.Examples:
user = fields.Nested(UserSchema) user2 = fields.Nested('UserSchema') # Equivalent to above collaborators = fields.Nested(UserSchema, many=True, only=('id',)) parent = fields.Nested('self')
When passing a
Schemainstance as the first argument, the instance’sexclude,only, andmanyattributes will be respected.Therefore, when passing the
exclude,only, ormanyarguments tofields.Nested, you should pass aSchemaclass (not an instance) as the first argument.# Yes author = fields.Nested(UserSchema, only=('id', 'name')) # No author = fields.Nested(UserSchema(), only=('id', 'name'))
Parameters: - nested – The Schema class or class name (string)
to nest, or
"self"to nest theSchemawithin itself. - exclude – A list or tuple of fields to exclude.
- only – A list or tuple of fields to marshal. If
None, all fields are marshalled. This parameter takes precedence overexclude. - many – Whether the field is a collection of objects.
- unknown – Whether to exclude, include, or raise an error for unknown
fields in the data. Use
EXCLUDE,INCLUDEorRAISE. - kwargs – The same keyword arguments that
Fieldreceives.
-
_deserialize(value, attr, data, partial=None, many=False, **kwargs)[source]¶ Same as
Field._deserialize()with additionalpartialargument.Parameters: partial (bool|tuple) – For nested schemas, the partialparameter passed toSchema.load.Changed in version 3.0.0: Add
partialparameter.
-
_serialize(nested_obj, attr, obj, many=False, **kwargs)[source]¶ Serializes
valueto a basic Python datatype. Noop by default. ConcreteFieldclasses should implement this method.Example:
class TitleCase(Field): def _serialize(self, value, attr, obj, **kwargs): if not value: return '' return str(value).title()
Parameters: - value – The value to be serialized.
- attr (str) – The attribute or key on the object to be serialized.
- obj (object) – The object the value was pulled from.
- kwargs (dict) – Field-specific keyword arguments.
Returns: The serialized value
- nested – The Schema class or class name (string)
to nest, or
-
class
marshmallow.fields.Mapping(keys: Union[marshmallow.fields.Field, typing.Type[marshmallow.fields.Field]] = None, values: Union[marshmallow.fields.Field, typing.Type[marshmallow.fields.Field]] = None, **kwargs)[source]¶ An abstract class for objects with key-value pairs.
Parameters: - keys – A field class or instance for dict keys.
- values – A field class or instance for dict values.
- kwargs – The same keyword arguments that
Fieldreceives.
Note
When the structure of nested data is not known, you may omit the
keysandvaluesarguments to prevent content validation.New in version 3.0.0rc4.
-
_bind_to_schema(field_name, schema)[source]¶ Update field with values from its parent schema. Called by
Schema._bind_field.Parameters: - field_name (str) – Field name set in schema.
- schema (Schema) – Parent schema.
-
_deserialize(value, attr, data, **kwargs)[source]¶ Deserialize value. Concrete
Fieldclasses should implement this method.Parameters: - value – The value to be deserialized.
- attr – The attribute/key in
datato be deserialized. - data – The raw input data passed to the
Schema.load. - kwargs – Field-specific keyword arguments.
Raises: ValidationError – In case of formatting or validation failure.
Returns: The deserialized value.
Changed in version 2.0.0: Added
attranddataparameters.Changed in version 3.0.0: Added
**kwargsto signature.
-
_serialize(value, attr, obj, **kwargs)[source]¶ Serializes
valueto a basic Python datatype. Noop by default. ConcreteFieldclasses should implement this method.Example:
class TitleCase(Field): def _serialize(self, value, attr, obj, **kwargs): if not value: return '' return str(value).title()
Parameters: - value – The value to be serialized.
- attr (str) – The attribute or key on the object to be serialized.
- obj (object) – The object the value was pulled from.
- kwargs (dict) – Field-specific keyword arguments.
Returns: The serialized value
-
mapping_type¶ alias of
builtins.dict
-
class
marshmallow.fields.Dict(keys: Union[marshmallow.fields.Field, typing.Type[marshmallow.fields.Field]] = None, values: Union[marshmallow.fields.Field, typing.Type[marshmallow.fields.Field]] = None, **kwargs)[source]¶ A dict field. Supports dicts and dict-like objects. Extends Mapping with dict as the mapping_type.
Example:
numbers = fields.Dict(keys=fields.Str(), values=fields.Float())
Parameters: kwargs – The same keyword arguments that Mappingreceives.New in version 2.1.0.
-
mapping_type¶ alias of
builtins.dict
-
-
class
marshmallow.fields.List(cls_or_instance: Union[marshmallow.fields.Field, typing.Type[marshmallow.fields.Field]], **kwargs)[source]¶ A list field, composed with another
Fieldclass or instance.Example:
numbers = fields.List(fields.Float())
Parameters: - cls_or_instance – A field class or instance.
- kwargs – The same keyword arguments that
Fieldreceives.
Changed in version 2.0.0: The
allow_noneparameter now applies to deserialization and has the same semantics as the other fields.Changed in version 3.0.0rc9: Does not serialize scalar values to single-item lists.
-
_bind_to_schema(field_name, schema)[source]¶ Update field with values from its parent schema. Called by
Schema._bind_field.Parameters: - field_name (str) – Field name set in schema.
- schema (Schema) – Parent schema.
-
_deserialize(value, attr, data, **kwargs) → List[Any][source]¶ Deserialize value. Concrete
Fieldclasses should implement this method.Parameters: - value – The value to be deserialized.
- attr – The attribute/key in
datato be deserialized. - data – The raw input data passed to the
Schema.load. - kwargs – Field-specific keyword arguments.
Raises: ValidationError – In case of formatting or validation failure.
Returns: The deserialized value.
Changed in version 2.0.0: Added
attranddataparameters.Changed in version 3.0.0: Added
**kwargsto signature.
-
_serialize(value, attr, obj, **kwargs) → Union[typing.List[typing.Any], NoneType][source]¶ Serializes
valueto a basic Python datatype. Noop by default. ConcreteFieldclasses should implement this method.Example:
class TitleCase(Field): def _serialize(self, value, attr, obj, **kwargs): if not value: return '' return str(value).title()
Parameters: - value – The value to be serialized.
- attr (str) – The attribute or key on the object to be serialized.
- obj (object) – The object the value was pulled from.
- kwargs (dict) – Field-specific keyword arguments.
Returns: The serialized value
-
class
marshmallow.fields.Tuple(tuple_fields, *args, **kwargs)[source]¶ A tuple field, composed of a fixed number of other
Fieldclasses or instancesExample:
row = Tuple((fields.String(), fields.Integer(), fields.Float()))
Note
Because of the structured nature of
collections.namedtupleandtyping.NamedTuple, using a Schema within a Nested field for them is more appropriate than using aTuplefield.Parameters: New in version 3.0.0rc4.
-
_bind_to_schema(field_name, schema)[source]¶ Update field with values from its parent schema. Called by
Schema._bind_field.Parameters: - field_name (str) – Field name set in schema.
- schema (Schema) – Parent schema.
-
_deserialize()[source]¶ Deserialize value. Concrete
Fieldclasses should implement this method.Parameters: - value – The value to be deserialized.
- attr – The attribute/key in
datato be deserialized. - data – The raw input data passed to the
Schema.load. - kwargs – Field-specific keyword arguments.
Raises: ValidationError – In case of formatting or validation failure.
Returns: The deserialized value.
Changed in version 2.0.0: Added
attranddataparameters.Changed in version 3.0.0: Added
**kwargsto signature.
-
_serialize(value, attr, obj, **kwargs) → Union[typing.Tuple, NoneType][source]¶ Serializes
valueto a basic Python datatype. Noop by default. ConcreteFieldclasses should implement this method.Example:
class TitleCase(Field): def _serialize(self, value, attr, obj, **kwargs): if not value: return '' return str(value).title()
Parameters: - value – The value to be serialized.
- attr (str) – The attribute or key on the object to be serialized.
- obj (object) – The object the value was pulled from.
- kwargs (dict) – Field-specific keyword arguments.
Returns: The serialized value
-
-
class
marshmallow.fields.String(*, default: Any = <marshmallow.missing>, missing: Any = <marshmallow.missing>, data_key: str = None, attribute: str = None, validate: Union[typing.Callable[[typing.Any], typing.Any], typing.Sequence[typing.Callable[[typing.Any], typing.Any]], typing.Generator[typing.Callable[[typing.Any], typing.Any], NoneType, NoneType]] = None, required: bool = False, allow_none: bool = None, load_only: bool = False, dump_only: bool = False, error_messages: Dict[str, str] = None, **metadata)[source]¶ A string field.
Parameters: kwargs – The same keyword arguments that Fieldreceives.-
_deserialize(value, attr, data, **kwargs) → Any[source]¶ Deserialize value. Concrete
Fieldclasses should implement this method.Parameters: - value – The value to be deserialized.
- attr – The attribute/key in
datato be deserialized. - data – The raw input data passed to the
Schema.load. - kwargs – Field-specific keyword arguments.
Raises: ValidationError – In case of formatting or validation failure.
Returns: The deserialized value.
Changed in version 2.0.0: Added
attranddataparameters.Changed in version 3.0.0: Added
**kwargsto signature.
-
_serialize(value, attr, obj, **kwargs) → Union[str, NoneType][source]¶ Serializes
valueto a basic Python datatype. Noop by default. ConcreteFieldclasses should implement this method.Example:
class TitleCase(Field): def _serialize(self, value, attr, obj, **kwargs): if not value: return '' return str(value).title()
Parameters: - value – The value to be serialized.
- attr (str) – The attribute or key on the object to be serialized.
- obj (object) – The object the value was pulled from.
- kwargs (dict) – Field-specific keyword arguments.
Returns: The serialized value
-
-
class
marshmallow.fields.UUID(*, default: Any = <marshmallow.missing>, missing: Any = <marshmallow.missing>, data_key: str = None, attribute: str = None, validate: Union[typing.Callable[[typing.Any], typing.Any], typing.Sequence[typing.Callable[[typing.Any], typing.Any]], typing.Generator[typing.Callable[[typing.Any], typing.Any], NoneType, NoneType]] = None, required: bool = False, allow_none: bool = None, load_only: bool = False, dump_only: bool = False, error_messages: Dict[str, str] = None, **metadata)[source]¶ A UUID field.
-
_deserialize(value, attr, data, **kwargs) → Union[uuid.UUID, NoneType][source]¶ Deserialize value. Concrete
Fieldclasses should implement this method.Parameters: - value – The value to be deserialized.
- attr – The attribute/key in
datato be deserialized. - data – The raw input data passed to the
Schema.load. - kwargs – Field-specific keyword arguments.
Raises: ValidationError – In case of formatting or validation failure.
Returns: The deserialized value.
Changed in version 2.0.0: Added
attranddataparameters.Changed in version 3.0.0: Added
**kwargsto signature.
-
_serialize(value, attr, obj, **kwargs) → Union[str, NoneType][source]¶ Serializes
valueto a basic Python datatype. Noop by default. ConcreteFieldclasses should implement this method.Example:
class TitleCase(Field): def _serialize(self, value, attr, obj, **kwargs): if not value: return '' return str(value).title()
Parameters: - value – The value to be serialized.
- attr (str) – The attribute or key on the object to be serialized.
- obj (object) – The object the value was pulled from.
- kwargs (dict) – Field-specific keyword arguments.
Returns: The serialized value
-
-
class
marshmallow.fields.Number(*, as_string=False, **kwargs)[source]¶ Base class for number fields.
Parameters: - as_string (bool) – If
True, format the serialized value as a string. - kwargs – The same keyword arguments that
Fieldreceives.
-
_deserialize(value, attr, data, **kwargs) → Union[~_T, NoneType][source]¶ Deserialize value. Concrete
Fieldclasses should implement this method.Parameters: - value – The value to be deserialized.
- attr – The attribute/key in
datato be deserialized. - data – The raw input data passed to the
Schema.load. - kwargs – Field-specific keyword arguments.
Raises: ValidationError – In case of formatting or validation failure.
Returns: The deserialized value.
Changed in version 2.0.0: Added
attranddataparameters.Changed in version 3.0.0: Added
**kwargsto signature.
-
_serialize(value, attr, obj, **kwargs) → Union[str, ~_T, NoneType][source]¶ Return a string if
self.as_string=True, otherwise return this field’snum_type.
-
_validated(value) → Union[~_T, NoneType][source]¶ Format the value or raise a
ValidationErrorif an error occurs.
-
num_type¶ alias of
builtins.float
- as_string (bool) – If
-
class
marshmallow.fields.Integer(*, strict: bool = False, **kwargs)[source]¶ An integer field.
Parameters: - strict – If
True, only integer types are valid. Otherwise, any value castable tointis valid. - kwargs – The same keyword arguments that
Numberreceives.
-
num_type¶ alias of
builtins.int
- strict – If
-
class
marshmallow.fields.Decimal(places: int = None, rounding: str = None, *, allow_nan: bool = False, as_string: bool = False, **kwargs)[source]¶ A field that (de)serializes to the Python
decimal.Decimaltype. It’s safe to use when dealing with money values, percentages, ratios or other numbers where precision is critical.Warning
This field serializes to a
decimal.Decimalobject by default. If you need to render your data as JSON, keep in mind that thejsonmodule from the standard library does not encodedecimal.Decimal. Therefore, you must use a JSON library that can handle decimals, such assimplejson, or serialize to a string by passingas_string=True.Warning
If a JSON
floatvalue is passed to this field for deserialization it will first be cast to its correspondingstringvalue before being deserialized to adecimal.Decimalobject. The default__str__implementation of the built-in Pythonfloattype may apply a destructive transformation upon its input data and therefore cannot be relied upon to preserve precision. To avoid this, you can instead pass a JSONstringto be deserialized directly.Parameters: - places – How many decimal places to quantize the value. If
None, does not quantize the value. - rounding – How to round the value during quantize, for example
decimal.ROUND_UP. IfNone, uses the rounding value from the current thread’s context. - allow_nan – If
True,NaN,Infinityand-Infinityare allowed, even though they are illegal according to the JSON specification. - as_string – If
True, serialize to a string instead of a Pythondecimal.Decimaltype. - kwargs – The same keyword arguments that
Numberreceives.
New in version 1.2.0.
-
num_type¶ alias of
decimal.Decimal
- places – How many decimal places to quantize the value. If
-
class
marshmallow.fields.Boolean(*, truthy: Set = None, falsy: Set = None, **kwargs)[source]¶ A boolean field.
Parameters: - truthy – Values that will (de)serialize to
True. If an empty set, any non-falsy value will deserialize toTrue. IfNone,marshmallow.fields.Boolean.truthywill be used. - falsy – Values that will (de)serialize to
False. IfNone,marshmallow.fields.Boolean.falsywill be used. - kwargs – The same keyword arguments that
Fieldreceives.
-
_deserialize(value, attr, data, **kwargs)[source]¶ Deserialize value. Concrete
Fieldclasses should implement this method.Parameters: - value – The value to be deserialized.
- attr – The attribute/key in
datato be deserialized. - data – The raw input data passed to the
Schema.load. - kwargs – Field-specific keyword arguments.
Raises: ValidationError – In case of formatting or validation failure.
Returns: The deserialized value.
Changed in version 2.0.0: Added
attranddataparameters.Changed in version 3.0.0: Added
**kwargsto signature.
-
_serialize(value, attr, obj, **kwargs)[source]¶ Serializes
valueto a basic Python datatype. Noop by default. ConcreteFieldclasses should implement this method.Example:
class TitleCase(Field): def _serialize(self, value, attr, obj, **kwargs): if not value: return '' return str(value).title()
Parameters: - value – The value to be serialized.
- attr (str) – The attribute or key on the object to be serialized.
- obj (object) – The object the value was pulled from.
- kwargs (dict) – Field-specific keyword arguments.
Returns: The serialized value
-
falsy= {'False', 0, 'FALSE', 'n', 'no', 'OFF', 'F', 'off', 'Off', 'No', 'N', '0', 'NO', 'f', 'false'}¶ Default falsy values.
-
truthy= {'y', 'Y', 1, '1', 'TRUE', 'true', 'Yes', 'yes', 'T', 'on', 'ON', 't', 'True', 'On', 'YES'}¶ Default truthy values.
- truthy – Values that will (de)serialize to
-
class
marshmallow.fields.Float(*, allow_nan=False, as_string=False, **kwargs)[source]¶ A double as an IEEE-754 double precision string.
Parameters: - allow_nan (bool) – If
True,NaN,Infinityand-Infinityare allowed, even though they are illegal according to the JSON specification. - as_string (bool) – If
True, format the value as a string. - kwargs – The same keyword arguments that
Numberreceives.
-
num_type¶ alias of
builtins.float
- allow_nan (bool) – If
-
class
marshmallow.fields.DateTime(format: str = None, **kwargs)[source]¶ A formatted datetime string.
Example:
'2014-12-22T03:12:58.019077+00:00'Parameters: - format – Either
"rfc"(for RFC822),"iso"(for ISO8601), or a date format string. IfNone, defaults to “iso”. - kwargs – The same keyword arguments that
Fieldreceives.
Changed in version 3.0.0rc9: Does not modify timezone information on (de)serialization.
-
_bind_to_schema(field_name, schema)[source]¶ Update field with values from its parent schema. Called by
Schema._bind_field.Parameters: - field_name (str) – Field name set in schema.
- schema (Schema) – Parent schema.
-
_deserialize(value, attr, data, **kwargs)[source]¶ Deserialize value. Concrete
Fieldclasses should implement this method.Parameters: - value – The value to be deserialized.
- attr – The attribute/key in
datato be deserialized. - data – The raw input data passed to the
Schema.load. - kwargs – Field-specific keyword arguments.
Raises: ValidationError – In case of formatting or validation failure.
Returns: The deserialized value.
Changed in version 2.0.0: Added
attranddataparameters.Changed in version 3.0.0: Added
**kwargsto signature.
-
_serialize(value, attr, obj, **kwargs)[source]¶ Serializes
valueto a basic Python datatype. Noop by default. ConcreteFieldclasses should implement this method.Example:
class TitleCase(Field): def _serialize(self, value, attr, obj, **kwargs): if not value: return '' return str(value).title()
Parameters: - value – The value to be serialized.
- attr (str) – The attribute or key on the object to be serialized.
- obj (object) – The object the value was pulled from.
- kwargs (dict) – Field-specific keyword arguments.
Returns: The serialized value
- format – Either
-
class
marshmallow.fields.NaiveDateTime(format: str = None, *, timezone: datetime.timezone = None, **kwargs)[source]¶ A formatted naive datetime string.
Parameters: New in version 3.0.0rc9.
-
_deserialize(value, attr, data, **kwargs)[source]¶ Deserialize value. Concrete
Fieldclasses should implement this method.Parameters: - value – The value to be deserialized.
- attr – The attribute/key in
datato be deserialized. - data – The raw input data passed to the
Schema.load. - kwargs – Field-specific keyword arguments.
Raises: ValidationError – In case of formatting or validation failure.
Returns: The deserialized value.
Changed in version 2.0.0: Added
attranddataparameters.Changed in version 3.0.0: Added
**kwargsto signature.
-
-
class
marshmallow.fields.AwareDateTime(format: str = None, *, default_timezone: datetime.timezone = None, **kwargs)[source]¶ A formatted aware datetime string.
Parameters: New in version 3.0.0rc9.
-
_deserialize(value, attr, data, **kwargs)[source]¶ Deserialize value. Concrete
Fieldclasses should implement this method.Parameters: - value – The value to be deserialized.
- attr – The attribute/key in
datato be deserialized. - data – The raw input data passed to the
Schema.load. - kwargs – Field-specific keyword arguments.
Raises: ValidationError – In case of formatting or validation failure.
Returns: The deserialized value.
Changed in version 2.0.0: Added
attranddataparameters.Changed in version 3.0.0: Added
**kwargsto signature.
-
-
class
marshmallow.fields.Time(*, default: Any = <marshmallow.missing>, missing: Any = <marshmallow.missing>, data_key: str = None, attribute: str = None, validate: Union[typing.Callable[[typing.Any], typing.Any], typing.Sequence[typing.Callable[[typing.Any], typing.Any]], typing.Generator[typing.Callable[[typing.Any], typing.Any], NoneType, NoneType]] = None, required: bool = False, allow_none: bool = None, load_only: bool = False, dump_only: bool = False, error_messages: Dict[str, str] = None, **metadata)[source]¶ ISO8601-formatted time string.
Parameters: kwargs – The same keyword arguments that Fieldreceives.-
_deserialize(value, attr, data, **kwargs)[source]¶ Deserialize an ISO8601-formatted time to a
datetime.timeobject.
-
_serialize(value, attr, obj, **kwargs)[source]¶ Serializes
valueto a basic Python datatype. Noop by default. ConcreteFieldclasses should implement this method.Example:
class TitleCase(Field): def _serialize(self, value, attr, obj, **kwargs): if not value: return '' return str(value).title()
Parameters: - value – The value to be serialized.
- attr (str) – The attribute or key on the object to be serialized.
- obj (object) – The object the value was pulled from.
- kwargs (dict) – Field-specific keyword arguments.
Returns: The serialized value
-
-
class
marshmallow.fields.Date(format: str = None, **kwargs)[source]¶ ISO8601-formatted date string.
Parameters: - format – Either
"iso"(for ISO8601) or a date format string. IfNone, defaults to “iso”. - kwargs – The same keyword arguments that
Fieldreceives.
- format – Either
-
class
marshmallow.fields.TimeDelta(precision: str = 'seconds', **kwargs)[source]¶ A field that (de)serializes a
datetime.timedeltaobject to an integer and vice versa. The integer can represent the number of days, seconds or microseconds.Parameters: - precision – Influences how the integer is interpreted during (de)serialization. Must be ‘days’, ‘seconds’, ‘microseconds’, ‘milliseconds’, ‘minutes’, ‘hours’ or ‘weeks’.
- kwargs – The same keyword arguments that
Fieldreceives.
Changed in version 2.0.0: Always serializes to an integer value to avoid rounding errors. Add
precisionparameter.-
_deserialize(value, attr, data, **kwargs)[source]¶ Deserialize value. Concrete
Fieldclasses should implement this method.Parameters: - value – The value to be deserialized.
- attr – The attribute/key in
datato be deserialized. - data – The raw input data passed to the
Schema.load. - kwargs – Field-specific keyword arguments.
Raises: ValidationError – In case of formatting or validation failure.
Returns: The deserialized value.
Changed in version 2.0.0: Added
attranddataparameters.Changed in version 3.0.0: Added
**kwargsto signature.
-
_serialize(value, attr, obj, **kwargs)[source]¶ Serializes
valueto a basic Python datatype. Noop by default. ConcreteFieldclasses should implement this method.Example:
class TitleCase(Field): def _serialize(self, value, attr, obj, **kwargs): if not value: return '' return str(value).title()
Parameters: - value – The value to be serialized.
- attr (str) – The attribute or key on the object to be serialized.
- obj (object) – The object the value was pulled from.
- kwargs (dict) – Field-specific keyword arguments.
Returns: The serialized value
-
class
marshmallow.fields.Url(*, relative: bool = False, schemes: Union[typing.Sequence, typing.Set] = None, require_tld: bool = True, **kwargs)[source]¶ A validated URL field. Validation occurs during both serialization and deserialization.
Parameters: - default – Default value for the field if the attribute is not set.
- relative – Whether to allow relative URLs.
- require_tld – Whether to reject non-FQDN hostnames.
- schemes – Valid schemes. By default,
http,https,ftp, andftpsare allowed. - kwargs – The same keyword arguments that
Stringreceives.
-
marshmallow.fields.URL¶ alias of
marshmallow.fields.Url
-
class
marshmallow.fields.Email(*args, **kwargs)[source]¶ A validated email field. Validation occurs during both serialization and deserialization.
Parameters:
-
class
marshmallow.fields.Method(serialize=None, deserialize=None, **kwargs)[source]¶ A field that takes the value returned by a
Schemamethod.Parameters: - serialize (str) – The name of the Schema method from which
to retrieve the value. The method must take an argument
obj(in addition to self) that is the object to be serialized. - deserialize (str) – Optional name of the Schema method for deserializing
a value The method must take a single argument
value, which is the value to deserialize.
Changed in version 2.0.0: Removed optional
contextparameter on methods. Useself.contextinstead.Changed in version 2.3.0: Deprecated
method_nameparameter in favor ofserializeand allowserializeto not be passed at all.Changed in version 3.0.0: Removed
method_nameparameter.-
_deserialize(value, attr, data, **kwargs)[source]¶ Deserialize value. Concrete
Fieldclasses should implement this method.Parameters: - value – The value to be deserialized.
- attr – The attribute/key in
datato be deserialized. - data – The raw input data passed to the
Schema.load. - kwargs – Field-specific keyword arguments.
Raises: ValidationError – In case of formatting or validation failure.
Returns: The deserialized value.
Changed in version 2.0.0: Added
attranddataparameters.Changed in version 3.0.0: Added
**kwargsto signature.
-
_serialize(value, attr, obj, **kwargs)[source]¶ Serializes
valueto a basic Python datatype. Noop by default. ConcreteFieldclasses should implement this method.Example:
class TitleCase(Field): def _serialize(self, value, attr, obj, **kwargs): if not value: return '' return str(value).title()
Parameters: - value – The value to be serialized.
- attr (str) – The attribute or key on the object to be serialized.
- obj (object) – The object the value was pulled from.
- kwargs (dict) – Field-specific keyword arguments.
Returns: The serialized value
- serialize (str) – The name of the Schema method from which
to retrieve the value. The method must take an argument
-
class
marshmallow.fields.Function(serialize: Union[typing.Callable[[typing.Any], typing.Any], typing.Callable[[typing.Any, typing.Dict], typing.Any]] = None, deserialize: Union[typing.Callable[[typing.Any], typing.Any], typing.Callable[[typing.Any, typing.Dict], typing.Any]] = None, **kwargs)[source]¶ A field that takes the value returned by a function.
Parameters: - serialize – A callable from which to retrieve the value.
The function must take a single argument
objwhich is the object to be serialized. It can also optionally take acontextargument, which is a dictionary of context variables passed to the serializer. If no callable is provided then the`load_only`flag will be set to True. - deserialize – A callable from which to retrieve the value.
The function must take a single argument
valuewhich is the value to be deserialized. It can also optionally take acontextargument, which is a dictionary of context variables passed to the deserializer. If no callable is provided then`value`will be passed through unchanged.
Changed in version 2.3.0: Deprecated
funcparameter in favor ofserialize.Changed in version 3.0.0a1: Removed
funcparameter.-
_deserialize(value, attr, data, **kwargs)[source]¶ Deserialize value. Concrete
Fieldclasses should implement this method.Parameters: - value – The value to be deserialized.
- attr – The attribute/key in
datato be deserialized. - data – The raw input data passed to the
Schema.load. - kwargs – Field-specific keyword arguments.
Raises: ValidationError – In case of formatting or validation failure.
Returns: The deserialized value.
Changed in version 2.0.0: Added
attranddataparameters.Changed in version 3.0.0: Added
**kwargsto signature.
-
_serialize(value, attr, obj, **kwargs)[source]¶ Serializes
valueto a basic Python datatype. Noop by default. ConcreteFieldclasses should implement this method.Example:
class TitleCase(Field): def _serialize(self, value, attr, obj, **kwargs): if not value: return '' return str(value).title()
Parameters: - value – The value to be serialized.
- attr (str) – The attribute or key on the object to be serialized.
- obj (object) – The object the value was pulled from.
- kwargs (dict) – Field-specific keyword arguments.
Returns: The serialized value
- serialize – A callable from which to retrieve the value.
The function must take a single argument
-
marshmallow.fields.Str¶ alias of
marshmallow.fields.String
-
marshmallow.fields.Bool¶ alias of
marshmallow.fields.Boolean
-
marshmallow.fields.Int¶ alias of
marshmallow.fields.Integer
-
class
marshmallow.fields.Constant(constant, **kwargs)[source]¶ A field that (de)serializes to a preset constant. If you only want the constant added for serialization or deserialization, you should use
dump_only=Trueorload_only=Truerespectively.Parameters: constant – The constant to return for the field attribute. New in version 2.0.0.
-
_deserialize(value, *args, **kwargs)[source]¶ Deserialize value. Concrete
Fieldclasses should implement this method.Parameters: - value – The value to be deserialized.
- attr – The attribute/key in
datato be deserialized. - data – The raw input data passed to the
Schema.load. - kwargs – Field-specific keyword arguments.
Raises: ValidationError – In case of formatting or validation failure.
Returns: The deserialized value.
Changed in version 2.0.0: Added
attranddataparameters.Changed in version 3.0.0: Added
**kwargsto signature.
-
_serialize(value, *args, **kwargs)[source]¶ Serializes
valueto a basic Python datatype. Noop by default. ConcreteFieldclasses should implement this method.Example:
class TitleCase(Field): def _serialize(self, value, attr, obj, **kwargs): if not value: return '' return str(value).title()
Parameters: - value – The value to be serialized.
- attr (str) – The attribute or key on the object to be serialized.
- obj (object) – The object the value was pulled from.
- kwargs (dict) – Field-specific keyword arguments.
Returns: The serialized value
-
-
class
marshmallow.fields.Pluck(nested, field_name, **kwargs)[source]¶ Allows you to replace nested data with one of the data’s fields.
Example:
from marshmallow import Schema, fields class ArtistSchema(Schema): id = fields.Int() name = fields.Str() class AlbumSchema(Schema): artist = fields.Pluck(ArtistSchema, 'id') in_data = {'artist': 42} loaded = AlbumSchema().load(in_data) # => {'artist': {'id': 42}} dumped = AlbumSchema().dump(loaded) # => {'artist': 42}
Parameters: -
_deserialize(value, attr, data, partial=None, **kwargs)[source]¶ Same as
Field._deserialize()with additionalpartialargument.Parameters: partial (bool|tuple) – For nested schemas, the partialparameter passed toSchema.load.Changed in version 3.0.0: Add
partialparameter.
-
_serialize(nested_obj, attr, obj, **kwargs)[source]¶ Serializes
valueto a basic Python datatype. Noop by default. ConcreteFieldclasses should implement this method.Example:
class TitleCase(Field): def _serialize(self, value, attr, obj, **kwargs): if not value: return '' return str(value).title()
Parameters: - value – The value to be serialized.
- attr (str) – The attribute or key on the object to be serialized.
- obj (object) – The object the value was pulled from.
- kwargs (dict) – Field-specific keyword arguments.
Returns: The serialized value
-
Decorators¶
Decorators for registering schema pre-processing and post-processing methods.
These should be imported from the top-level marshmallow module.
Methods decorated with
pre_load, post_load,
pre_dump, post_dump,
and validates_schema receive
many as a keyword argument. In addition, pre_load,
post_load,
and validates_schema receive
partial. If you don’t need these arguments, add **kwargs to your method
signature.
Example:
from marshmallow import (
Schema, pre_load, pre_dump, post_load, validates_schema,
validates, fields, ValidationError
)
class UserSchema(Schema):
email = fields.Str(required=True)
age = fields.Integer(required=True)
@post_load
def lowerstrip_email(self, item, many, **kwargs):
item['email'] = item['email'].lower().strip()
return item
@pre_load(pass_many=True)
def remove_envelope(self, data, many, **kwargs):
namespace = 'results' if many else 'result'
return data[namespace]
@post_dump(pass_many=True)
def add_envelope(self, data, many, **kwargs):
namespace = 'results' if many else 'result'
return {namespace: data}
@validates_schema
def validate_email(self, data, **kwargs):
if len(data['email']) < 3:
raise ValidationError('Email must be more than 3 characters', 'email')
@validates('age')
def validate_age(self, data, **kwargs):
if data < 14:
raise ValidationError('Too young!')
Note
These decorators only work with instance methods. Class and static methods are not supported.
Warning
The invocation order of decorated methods of the same type is not guaranteed. If you need to guarantee order of different processing steps, you should put them in the same processing method.
-
marshmallow.decorators.post_dump(fn=None, pass_many=False, pass_original=False)[source]¶ Register a method to invoke after serializing an object. The method receives the serialized object and returns the processed object.
By default it receives a single object at a time, transparently handling the
manyargument passed to theSchema’sdump()call. Ifpass_many=True, the raw data (which may be a collection) is passed.If
pass_original=True, the original data (before serializing) will be passed as an additional argument to the method.Changed in version 3.0.0:
manyis always passed as a keyword arguments to the decorated method.
-
marshmallow.decorators.post_load(fn=None, pass_many=False, pass_original=False)[source]¶ Register a method to invoke after deserializing an object. The method receives the deserialized data and returns the processed data.
By default it receives a single object at a time, transparently handling the
manyargument passed to theSchema’sload()call. Ifpass_many=True, the raw data (which may be a collection) is passed.If
pass_original=True, the original data (before deserializing) will be passed as an additional argument to the method.Changed in version 3.0.0:
partialandmanyare always passed as keyword arguments to the decorated method.
-
marshmallow.decorators.pre_dump(fn=None, pass_many=False)[source]¶ Register a method to invoke before serializing an object. The method receives the object to be serialized and returns the processed object.
By default it receives a single object at a time, transparently handling the
manyargument passed to theSchema’sdump()call. Ifpass_many=True, the raw data (which may be a collection) is passed.Changed in version 3.0.0:
manyis always passed as a keyword arguments to the decorated method.
-
marshmallow.decorators.pre_load(fn=None, pass_many=False)[source]¶ Register a method to invoke before deserializing an object. The method receives the data to be deserialized and returns the processed data.
By default it receives a single object at a time, transparently handling the
manyargument passed to theSchema’sload()call. Ifpass_many=True, the raw data (which may be a collection) is passed.Changed in version 3.0.0:
partialandmanyare always passed as keyword arguments to the decorated method.
-
marshmallow.decorators.set_hook(fn, key, **kwargs)[source]¶ Mark decorated function as a hook to be picked up later. You should not need to use this method directly.
Note
Currently only works with functions and instance methods. Class and static methods are not supported.
Returns: Decorated function if supplied, else this decorator with its args bound.
-
marshmallow.decorators.validates(field_name: str)[source]¶ Register a field validator.
Parameters: field_name (str) – Name of the field that the method validates.
-
marshmallow.decorators.validates_schema(fn=None, pass_many=False, pass_original=False, skip_on_field_errors=True)[source]¶ Register a schema-level validator.
By default it receives a single object at a time, transparently handling the
manyargument passed to theSchema’svalidate()call. Ifpass_many=True, the raw data (which may be a collection) is passed.If
pass_original=True, the original data (before unmarshalling) will be passed as an additional argument to the method.If
skip_on_field_errors=True, this validation method will be skipped whenever validation errors have been detected when validating fields.Changed in version 3.0.0b1:
skip_on_field_errorsdefaults toTrue.Changed in version 3.0.0:
partialandmanyare always passed as keyword arguments to the decorated method.
Validators¶
Validation classes for various types of data.
-
class
marshmallow.validate.ContainsOnly(choices, labels=None, *, error=None)[source]¶ Validator which succeeds if
valueis a sequence and each element in the sequence is also in the sequence passed aschoices. Empty input is considered valid.Parameters: Changed in version 3.0.0b2: Duplicate values are considered valid.
Changed in version 3.0.0b2: Empty input is considered valid. Use
validate.Length(min=1)to validate against empty inputs.
-
class
marshmallow.validate.Email(*, error=None)[source]¶ Validate an email address.
Parameters: error (str) – Error message to raise in case of a validation error. Can be interpolated with {input}.
-
class
marshmallow.validate.Equal(comparable, *, error=None)[source]¶ Validator which succeeds if the
valuepassed to it is equal tocomparable.Parameters: - comparable – The object to compare to.
- error (str) – Error message to raise in case of a validation error.
Can be interpolated with
{input}and{other}.
-
class
marshmallow.validate.Length(min=None, max=None, *, error=None, equal=None)[source]¶ Validator which succeeds if the value passed to it has a length between a minimum and maximum. Uses len(), so it can work for strings, lists, or anything with length.
Parameters: - min (int) – The minimum length. If not provided, minimum length will not be checked.
- max (int) – The maximum length. If not provided, maximum length will not be checked.
- equal (int) – The exact length. If provided, maximum and minimum length will not be checked.
- error (str) – Error message to raise in case of a validation error.
Can be interpolated with
{input},{min}and{max}.
-
class
marshmallow.validate.NoneOf(iterable, *, error=None)[source]¶ Validator which fails if
valueis a member ofiterable.Parameters: - iterable (iterable) – A sequence of invalid values.
- error (str) – Error message to raise in case of a validation error. Can be
interpolated using
{input}and{values}.
-
class
marshmallow.validate.OneOf(choices, labels=None, *, error=None)[source]¶ Validator which succeeds if
valueis a member ofchoices.Parameters: - choices (iterable) – A sequence of valid values.
- labels (iterable) – Optional sequence of labels to pair with the choices.
- error (str) – Error message to raise in case of a validation error. Can be
interpolated with
{input},{choices}and{labels}.
-
options(valuegetter=<class 'str'>)[source]¶ Return a generator over the (value, label) pairs, where value is a string associated with each choice. This convenience method is useful to populate, for instance, a form select field.
Parameters: valuegetter – Can be a callable or a string. In the former case, it must be a one-argument callable which returns the value of a choice. In the latter case, the string specifies the name of an attribute of the choice objects. Defaults to str()orstr().
-
class
marshmallow.validate.Predicate(method, *, error=None, **kwargs)[source]¶ Call the specified
methodof thevalueobject. The validator succeeds if the invoked method returns an object that evaluates to True in a Boolean context. Any additional keyword argument will be passed to the method.Parameters: - method (str) – The name of the method to invoke.
- error (str) – Error message to raise in case of a validation error.
Can be interpolated with
{input}and{method}. - kwargs – Additional keyword arguments to pass to the method.
-
class
marshmallow.validate.Range(min=None, max=None, *, min_inclusive=True, max_inclusive=True, error=None)[source]¶ Validator which succeeds if the value passed to it is within the specified range. If
minis not specified, or is specified asNone, no lower bound exists. Ifmaxis not specified, or is specified asNone, no upper bound exists. The inclusivity of the bounds (if they exist) is configurable. Ifmin_inclusiveis not specified, or is specified asTrue, then theminbound is included in the range. Ifmax_inclusiveis not specified, or is specified asTrue, then themaxbound is included in the range.Parameters: - min – The minimum value (lower bound). If not provided, minimum value will not be checked.
- max – The maximum value (upper bound). If not provided, maximum value will not be checked.
- error (str) – Error message to raise in case of a validation error.
Can be interpolated with
{input},{min}and{max}. - min_inclusive (bool) – Whether the
minbound is included in the range. - max_inclusive (bool) – Whether the
maxbound is included in the range.
-
class
marshmallow.validate.Regexp(regex, flags=0, *, error=None)[source]¶ Validator which succeeds if the
valuematchesregex.Note
Uses
re.match, which searches for a match at the beginning of a string.Parameters: - regex – The regular expression string to use. Can also be a compiled regular expression pattern.
- flags – The regexp flags to use, for example re.IGNORECASE. Ignored
if
regexis not a string. - error (str) – Error message to raise in case of a validation error.
Can be interpolated with
{input}and{regex}.
-
class
marshmallow.validate.URL(*, relative: bool = False, schemes: Union[typing.Sequence, typing.Set] = None, require_tld: bool = True, error: str = None)[source]¶ Validate a URL.
Parameters: - relative – Whether to allow relative URLs.
- error – Error message to raise in case of a validation error.
Can be interpolated with
{input}. - schemes – Valid schemes. By default,
http,https,ftp, andftpsare allowed. - require_tld – Whether to reject non-FQDN hostnames.
Utility Functions¶
Utility methods for marshmallow.
-
marshmallow.utils.callable_or_raise(obj)[source]¶ Check that an object is callable, else raise a
ValueError.
-
marshmallow.utils.from_iso_datetime(value)[source]¶ Parse a string and return a datetime.datetime.
This function supports time zone offsets. When the input contains one, the output uses a timezone with a fixed offset from UTC.
-
marshmallow.utils.from_iso_time(value)[source]¶ Parse a string and return a datetime.time.
This function doesn’t support time zone offsets.
-
marshmallow.utils.from_rfc(datestring: str) → datetime.datetime[source]¶ Parse a RFC822-formatted datetime string and return a datetime object.
https://stackoverflow.com/questions/885015/how-to-parse-a-rfc-2822-date-time-into-a-python-datetime # noqa: B950
-
marshmallow.utils.get_fixed_timezone(offset: Union[int, float, datetime.timedelta]) → datetime.timezone[source]¶ Return a tzinfo instance with a fixed offset from UTC.
-
marshmallow.utils.get_func_args(func: Callable) → List[str][source]¶ Given a callable, return a list of argument names. Handles
functools.partialobjects and class-based callables.Changed in version 3.0.0a1: Do not return bound arguments, eg.
self.
-
marshmallow.utils.get_value(obj, key: Union[int, str], default=<marshmallow.missing>)[source]¶ Helper for pulling a keyed value off various types of objects. Fields use this method by default to access attributes of the source object. For object
xand attributei, this method first tries to accessx[i], and then falls back tox.iif an exception is raised.Warning
If an object
xdoes not raise an exception whenx[i]does not exist,get_valuewill never check the valuex.i. Consider overridingmarshmallow.fields.Field.get_valuein this case.
-
marshmallow.utils.is_collection(obj) → bool[source]¶ Return True if
objis a collection type, e.g list, tuple, queryset.
-
marshmallow.utils.is_instance_or_subclass(val, class_) → bool[source]¶ Return True if
valis either a subclass or instance ofclass_.
-
marshmallow.utils.is_iterable_but_not_string(obj) → bool[source]¶ Return True if
objis an iterable object that isn’t a string.
-
marshmallow.utils.is_keyed_tuple(obj) → bool[source]¶ Return True if
objhas keyed tuple behavior, such as namedtuples or SQLAlchemy’s KeyedTuples.
-
marshmallow.utils.isoformat(datetime: datetime.datetime) → str[source]¶ Return the ISO8601-formatted representation of a datetime object.
Parameters: datetime (datetime) – The datetime.
-
marshmallow.utils.pluck(dictlist: List[Dict[str, Any]], key: str)[source]¶ Extracts a list of dictionary values from a list of dictionaries.
>>> dlist = [{'id': 1, 'name': 'foo'}, {'id': 2, 'name': 'bar'}] >>> pluck(dlist, 'id') [1, 2]
-
marshmallow.utils.pprint(obj, *args, **kwargs) → None[source]¶ Pretty-printing function that can pretty-print OrderedDicts like regular dictionaries. Useful for printing the output of
marshmallow.Schema.dump().
-
marshmallow.utils.resolve_field_instance(cls_or_instance)[source]¶ Return a Schema instance from a Schema class or instance.
Parameters: cls_or_instance (type|Schema) – Marshmallow Schema class or instance.
Error Store¶
Utilities for storing collections of error messages.
Warning
This module is treated as private API. Users should not need to use this module directly.
-
marshmallow.error_store.merge_errors(errors1, errors2)[source]¶ Deeply merge two error messages.
The format of
errors1anderrors2matches themessageparameter ofmarshmallow.exceptions.ValidationError.
Class Registry¶
A registry of Schema classes. This allows for string
lookup of schemas, which may be used with
class:fields.Nested.
Warning
This module is treated as private API. Users should not need to use this module directly.
-
marshmallow.class_registry.get_class(classname: str, all: bool = False) → Union[typing.List[_ForwardRef('Schema')], _ForwardRef('Schema')][source]¶ Retrieve a class from the registry.
Raises: marshmallow.exceptions.RegistryError if the class cannot be found or if there are multiple entries for the given class name.
-
marshmallow.class_registry.register(classname: str, cls: Schema) → None[source]¶ Add a class to the registry of serializer classes. When a class is registered, an entry for both its classname and its full, module-qualified path are added to the registry.
Example:
class MyClass: pass register('MyClass', MyClass) # Registry: # { # 'MyClass': [path.to.MyClass], # 'path.to.MyClass': [path.to.MyClass], # }
Exceptions¶
Exception classes for marshmallow-related errors.
-
exception
marshmallow.exceptions.FieldInstanceResolutionError[source]¶ Raised when schema to instantiate is neither a Schema class nor an instance.
-
exception
marshmallow.exceptions.MarshmallowError[source]¶ Base class for all marshmallow-related errors.
-
exception
marshmallow.exceptions.RegistryError[source]¶ Raised when an invalid operation is performed on the serializer class registry.
-
exception
marshmallow.exceptions.StringNotCollectionError[source]¶ Raised when a string is passed when a list of strings is expected.
-
exception
marshmallow.exceptions.ValidationError(message: Union[str, typing.List, typing.Dict], field_name: str = '_schema', data: Dict[str, Any] = None, valid_data: Union[typing.List[typing.Dict[str, typing.Any]], typing.Dict[str, typing.Any]] = None, **kwargs)[source]¶ Raised when validation fails on a field or schema.
Validators and custom fields should raise this exception.
Parameters: - message – An error message, list of error messages, or dict of error messages. If a dict, the keys are subitems and the values are error messages.
- field_name – Field name to store the error on.
If
None, the error is stored as schema-level error. - data – Raw input data.
- valid_data – Valid (de)serialized data.