Skip to content

Types

flowtask.types

AttrDict

AttrDict(*args, **kwargs)

Bases: builtins.dict

AttrDict. Allow to using a dictionary like an object

__doc__ class-attribute

__doc__ = '\n    AttrDict.\n    Allow to using a dictionary like an object\n    '

str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str

Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.str() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to 'strict'.

__module__ class-attribute

__module__ = 'flowtask.types.typedefs'

str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str

Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.str() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to 'strict'.

__weakref__ property

__weakref__

list of weak references to the object

__getattr__ method descriptor

__getattr__()

x.getitem(y) <==> x[y]

__setattr__ method descriptor

__setattr__(key, value)

Set self[key] to value.

NullDefault

Bases: builtins.dict

NullDefault.

When an attribute is missing, return default.

__doc__ class-attribute

__doc__ = 'NullDefault.\n\n    When an attribute is missing, return default.\n    '

str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str

Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.str() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to 'strict'.

__module__ class-attribute

__module__ = 'flowtask.types.typedefs'

str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str

Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.str() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to 'strict'.

__weakref__ property

__weakref__

list of weak references to the object

__missing__ method descriptor

__missing__(key)

NullDefault.missing(self, key)

SafeDict

Bases: builtins.dict

SafeDict.

Allow to using partial format strings

__doc__ class-attribute

__doc__ = '\n    SafeDict.\n\n    Allow to using partial format strings\n\n    '

str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str

Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.str() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to 'strict'.

__module__ class-attribute

__module__ = 'flowtask.types.typedefs'

str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str

Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.str() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to 'strict'.

__weakref__ property

__weakref__

list of weak references to the object

__missing__ method descriptor

__missing__(key)

SafeDict.missing(self, str key) Missing method for SafeDict.

strtobool method descriptor

strtobool(val)

strtobool(str val) Convert a string representation of truth to true (1) or false (0).

True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values
are 'n', 'no', 'f', 'false', 'off', and '0'.  Raises ValueError if
'val' is anything else.

typedefs

__file__ module-attribute

__file__ = '/home/jesuslara/proyectos/parallel/flowtask/flowtask/types/typedefs.cpython-311-x86_64-linux-gnu.so'

str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str

Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.str() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to 'strict'.

__name__ module-attribute

__name__ = 'flowtask.types.typedefs'

str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str

Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.str() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to 'strict'.

__package__ module-attribute

__package__ = 'flowtask.types'

str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str

Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.str() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to 'strict'.

__test__ module-attribute

__test__ = {}

dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object's (key, value) pairs dict(iterable) -> new dictionary initialized as if via: d = {} for k, v in iterable: d[k] = v dict(**kwargs) -> new dictionary initialized with the name=value pairs in the keyword argument list. For example: dict(one=1, two=2)

AttrDict

AttrDict(*args, **kwargs)

Bases: builtins.dict

AttrDict. Allow to using a dictionary like an object

__doc__ class-attribute
__doc__ = '\n    AttrDict.\n    Allow to using a dictionary like an object\n    '

str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str

Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.str() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to 'strict'.

__module__ class-attribute
__module__ = 'flowtask.types.typedefs'

str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str

Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.str() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to 'strict'.

__weakref__ property
__weakref__

list of weak references to the object

__getattr__ method descriptor
__getattr__()

x.getitem(y) <==> x[y]

__setattr__ method descriptor
__setattr__(key, value)

Set self[key] to value.

NullDefault

Bases: builtins.dict

NullDefault.

When an attribute is missing, return default.

__doc__ class-attribute
__doc__ = 'NullDefault.\n\n    When an attribute is missing, return default.\n    '

str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str

Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.str() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to 'strict'.

__module__ class-attribute
__module__ = 'flowtask.types.typedefs'

str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str

Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.str() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to 'strict'.

__weakref__ property
__weakref__

list of weak references to the object

__missing__ method descriptor
__missing__(key)

NullDefault.missing(self, key)

SafeDict

Bases: builtins.dict

SafeDict.

Allow to using partial format strings

__doc__ class-attribute
__doc__ = '\n    SafeDict.\n\n    Allow to using partial format strings\n\n    '

str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str

Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.str() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to 'strict'.

__module__ class-attribute
__module__ = 'flowtask.types.typedefs'

str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str

Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.str() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to 'strict'.

__weakref__ property
__weakref__

list of weak references to the object

__missing__ method descriptor
__missing__(key)

SafeDict.missing(self, str key) Missing method for SafeDict.

Singleton

Bases: builtins.type

Singleton. Metaclass for Singleton instances. Returns: cls: a singleton version of the class, there are only one version of the instance any time.

__doc__ class-attribute
__doc__ = 'Singleton.\n    Metaclass for Singleton instances.\n    Returns:\n        cls: a singleton version of the class, there are only one\n        version of the instance any time.\n    '

str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str

Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.str() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to 'strict'.

__pyx_vtable__ class-attribute
__pyx_vtable__ = <capsule object NULL at 0x73929eac7060>

Capsule objects let you wrap a C "void *" pointer in a Python object. They're a way of passing data through the Python interpreter without creating your own custom type.

Capsules are used for communication between extension modules. They provide a way for an extension module to export a C interface to other extension modules, so that extension modules can use the Python import mechanism to link to one another.

__call__ method descriptor
__call__(*args, **kwargs)

Call self as a function.

__new__ builtin
__new__(*args, **kwargs)

Create and return a new object. See help(type) for accurate signature.

__reduce__ method descriptor
__reduce__()

Singleton.reduce_cython(self)

__reduce_cython__ method descriptor
__reduce_cython__()

Singleton.reduce_cython(self)

__setstate__ method descriptor
__setstate__()

Singleton.setstate_cython(self, __pyx_state)

__setstate_cython__ method descriptor
__setstate_cython__(__pyx_state)

Singleton.setstate_cython(self, __pyx_state)

__pyx_unpickle_Singleton method descriptor

__pyx_unpickle_Singleton(__pyx_type, __pyx_checksum, __pyx_state)

__pyx_unpickle_Singleton(__pyx_type, long __pyx_checksum, __pyx_state)

strtobool method descriptor

strtobool(val)

strtobool(str val) Convert a string representation of truth to true (1) or false (0).

True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values
are 'n', 'no', 'f', 'false', 'off', and '0'.  Raises ValueError if
'val' is anything else.