embutils.utils.common module
Common SDK definitions.
- date
2021
- author
Christian Wiche
- contact
- license
The MIT License (MIT)
- embutils.utils.common.CBAny2Any
CallBack definition. Any -> Any
alias of
Callable[[…],Any]
- embutils.utils.common.CBAny2None
CallBack definition. Any -> None
alias of
Callable[[…],None]
- embutils.utils.common.CBNone2None
CallBack definition. None -> None
alias of
Callable[[],None]
- embutils.utils.common.ENCODE = 'utf-8'
Default message encoding
- embutils.utils.common.TPAny = typing.Any
TyPe definition. Any value.
- embutils.utils.common.TPByte
TyPe definition. Path sources.
alias of
Union[bytes,bytearray]
- embutils.utils.common.TPPath
TyPe definition. Path sources.
alias of
Union[bytes,bytearray,str,pathlib.Path]
- embutils.utils.common.TPText
TyPe definition. Path sources.
alias of
Union[bytes,bytearray,str]