asyncutils

A feature-rich asynchronous utilities library with CLI and REPL support.

asyncutils.__hexversion__: Final[int]
An integer representing the current pip/conda version of this library. Comparison operators behave as expected.
For version 1.3.11, for instance, this would be 0x01030b.

Note

Equivalent to int(__version__).

asyncutils.__version__: Final[version.VersionInfo]

An instance of version.VersionInfo representing the current pip/conda version of this library.

Note

This library adheres to Semantic Versioning 2.0.0.

asyncutils.console_preloaded_submodules: Final[frozenset[_internal.prots.Submodule]]

A frozenset of submodule names which are loaded when starting the interactive console of this module.

Note

This is a strict superset of preloaded_submodules.

asyncutils.preloaded_submodules: Final[frozenset[_internal.prots.Submodule]]

A frozenset of names of submodules which are preloaded when importing the library for essential initialization.

asyncutils.submodules_map: Final[dict[_internal.prots.Submodule, types.ModuleType]]

A dict mapping submodule names to the corresponding submodule objects.

Note

For submodules that are already loaded, these are exact instances of types.ModuleType.

asyncutils.time_since_boot() ty_extensions.JustFloat[source]

Time since the module was imported or invoked in the command line in milliseconds, as returned by time.monotonic(), as a float.

Submodules