Utility Functions¶
Utility methods for marshmallow.
-
marshmallow.utils.callable_or_raise(obj)[source]¶ Check that an object is callable, else raise a
TypeError.
-
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: int | float | dt.timedelta) → dt.timezone[source]¶ Return a tzinfo instance with a fixed offset from UTC.
-
marshmallow.utils.get_func_args(func: Callable) → list[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: 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, 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().Deprecated since version 3.7.0: marshmallow.pprint will be removed in marshmallow 4.
-
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.
-
marshmallow.utils.rfcformat(datetime: datetime.datetime) → str[source]¶ Return the RFC822-formatted representation of a datetime object.
- Parameters
datetime (datetime) – The datetime.
-
marshmallow.utils.set_value(dct: dict, key: str, value: Any)[source]¶ Set a value in a dict. If
keycontains a ‘.’, it is assumed be a path (i.e. dot-delimited string) to the value’s location.>>> d = {} >>> set_value(d, 'foo.bar', 42) >>> d {'foo': {'bar': 42}}
-
marshmallow.utils.timedelta_to_microseconds(value: datetime.timedelta) → int[source]¶ Compute the total microseconds of a timedelta
https://github.com/python/cpython/blob/bb3e0c240bc60fe08d332ff5955d54197f79751c/Lib/datetime.py#L665-L667 # noqa: B950