2 dépôts
Automatically handles the execution of coroutines and event loop management for command line tools.
Distinct from Coroutine Orchestrators: Focuses on the execution of async functions via a CLI, rather than general language-level coroutine orchestration.
Explore 2 awesome GitHub repositories matching programming languages & runtimes · Asynchronous Function Execution. Refine with filters or upvote what's useful.
Python Fire is a library that automatically generates command line interfaces from any Python object, function, or class. It removes the need for manual argument parsing by mapping Python dictionaries, lists, and classes directly to terminal commands. The tool converts Python docstrings into formatted terminal help screens and produces shell scripts to enable tab-completion for available commands. It can wrap existing libraries or external modules to expose their functionality via the terminal without requiring modifications to the original source code. The library supports hierarchical comm
Detects asynchronous functions at runtime and manages the event loop to block until the operation finishes.
Dramatiq is a distributed task queue and workload manager used to offload function execution to background workers. It functions as an asynchronous task orchestrator that enables the distribution of computational tasks across a cluster using a pluggable transport layer supporting RabbitMQ and Redis. The framework provides specialized tools for complex task orchestration, including the ability to link background jobs into sequences, pipelines, and barriers. It further manages distributed concurrency through the use of shared mutexes, rate limiters, and exponential backoff retries to prevent re
Enables the execution of asynchronous functions within an event loop to maintain compatibility across thread types.