Module to postpone the execution of a function.
Project description
Delayed/Deferred/Lazy function evaluation with static and run-time type checks.
Goal
The goal of the postponed
package is to provide an interface that allows the user to provide the input arguments to a function but postpone it evaluation to later.
This can be usefull to make parallelization through multithreading or multiprocessing less error-prone
by providing:
- autocompletion when providing the list of argument to the postponed function in you IDE
- optional runtime-check of the input arguments and their types, ahead of the execution in a thread or subprocess in order to fail faster in the main thread if there is an error on the the input arguments.
Motivation
The common approach to to use multiprocessing to run a function that takes several input arguments over several sub processes is to use pool.starmap
as done in the following example:
import multiprocessing
max_threads=3
def repeat_string(s: str, n: int) -> str:
return s * n
def test_repeat_string() -> None:
max_workers = multiprocessing.cpu_count()
pool = multiprocessing.Pool(processes=max_workers)
arguments = [("a", 2), ("b", 3)]
outputs = pool.starmap(repeat_string, arguments)
print(outputs)
if __name__ == "__main__":
test_repeat_string()
This has several limitations:
- The IDE cannot provide autocompletion and code hints based of the signature of the function
repeat_string
when creating the listarguments
which makes it more error prone than normal direct call torepeat_string
. - You have to make sure you provide the arguments in the right order (positional arguments) and you cannot use named arguments.
- If one uses a runtime type checker like
typegard
using a decorator@typechecked
on the functionrepeat_string
, then the error will be raised in the subprocess which makes debugging harder.
Note that mypy does raise an error when some of the provided arguments in arguments
have the wrong type. This is the case when one uses arguments = [("a", 2), (2, 3)]
for example.
Solution
Postpone allows to overcome these two limitations by enabling the IDE to provide useful code hints and by allowing the use of named arguments as illustrated here:
from postponed import postponed, execute_tasks_processes, execute_tasks_threads
def repeat_string(s: str, n: int) -> str:
return s * n
def test_repeat_string() -> None:
postponed_repeat_string = postponed(repeat_string, check_inputs=True)
tasks = [
postponed_repeat_string(s="a", n=2),
postponed_repeat_string(s="b", n=3),
postponed_repeat_string(s="c", n=4),
]
outputs = execute_tasks_processes(tasks=tasks, max_workers=max_workers)
if __name__ == "__main__":
test_repeat_string()
In Visual Studio Code the code hint appears like this:
Note that the signature of postponed_repeat_string
, (s: str, n: int) -> (() -> str)
is explicit and relatively easy to understand: it returns a callable that take not arguments and return a string.
In addition, by using check_inputs=True
, one can automatically check at run time that the list of arguments and their type are conform with the function signature. The is done in the main process as early as possible when postponed_repeat_string
is called by using typeguard under the hood. This allows to catch errors earlier, before the tasks executes on a subprocess which can make the code easier to debug and reduce the duration of the debugging loop.
Alternatives
- Dask's delayed decorator. Does not perform run-time type checks and requires installing Dask and all its dependencies.
- lazy python. Does not perform run-time type checks and seems unmaintained.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file postponed-0.0.1.tar.gz
.
File metadata
- Download URL: postponed-0.0.1.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ef4cea6f935965332f4c483076281653c94c2c6baec7b4a834be85ff2ffad541 |
|
MD5 | 378d055c6cbc3fd7af0c321969dd2eba |
|
BLAKE2b-256 | 75be84b864c4634c650b320772ece079d03640dcd47eb506d8d90ff6d3451f71 |
File details
Details for the file postponed-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: postponed-0.0.1-py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cdc7163dd7e2dc9377c86d23baa53d26c4fbb1211c7a7230d9a78b603f7dd545 |
|
MD5 | d665ff190939c7da8efef4cdc43dccc2 |
|
BLAKE2b-256 | eb58e698fc78f05e54a611d109bda49bc3949030d68b4b12c699ab1e947abf2c |