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.VersionInforepresenting 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
frozensetof 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
frozensetof names of submodules which are preloaded when importing the library for essential initialization.
- asyncutils.submodules_map: Final[dict[_internal.prots.Submodule, types.ModuleType]]¶
A
dictmapping 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 afloat.
Submodules¶
- asyncutils.__main__
- asyncutils._internal
- asyncutils.altlocks
- asyncutils.base
- asyncutils.buckets
- asyncutils.channels
- asyncutils.cli
- asyncutils.compete
- asyncutils.config
- asyncutils.console
- asyncutils.constants
- asyncutils.context
- asyncutils.events
- asyncutils.exceptions
- asyncutils.func
- asyncutils.futures
- asyncutils.iotools
- asyncutils.iterclasses
- asyncutils.iters
- asyncutils.locks
- asyncutils.locksmiths
- asyncutils.misc
- asyncutils.mixins
- asyncutils.networking
- asyncutils.pools
- asyncutils.processors
- asyncutils.properties
- asyncutils.queues
- asyncutils.rwlocks
- asyncutils.signals
- asyncutils.tools
- asyncutils.util
- asyncutils.version