Welcome to MultiRunnable’s documentation!
- GitHub Release
v0.17.0a1.dev1
- PyPi Release
0.15.2
- Date
Feb 07, 2022
Building Status
OS |
Building Status |
Coverage Status |
|---|---|---|
Linux |
(Deprecated CI) |
|
Linux |
||
Linux |
||
Windows |
Overview
A Python framework integrates running multiple tasks simultaneously with different strategy. It target to help developers build parallelism feature easily and clearly. You just only focus on the business logic implementations or others.
Let’s demonstrate an example to show how easy and clear it is!
from multirunnable import SimpleExecutor, RunningMode
_executor = SimpleExecutor(mode=RunningMode.Parallel, executors=10)
_executor.run(function=target_function, args=("index_1", "index_2.2"))
General documentation
Development documentation