Skip to content

asyncio

asyncio

Attributes

__doctitle__ module-attribute

__doctitle__ = 'AsyncIO-based InferFlow Modules'

__all__ module-attribute

__all__ = ['batch', 'pipeline', 'runtime', 'workflow']

Functions

__getattr__

__getattr__(name: str) -> Any
Source code in inferflow/asyncio/__init__.py
def __getattr__(name: str) -> t.Any:
    if name in __all__:
        return importlib.import_module("." + name, __name__)
    raise AttributeError(f"module {__name__!r} has no attribute {name!r}")

Submodules