5th April 2021
Coding⚑
Python⚑
-
Improvement: Add aiomultiprocess to the list of libraries to test.
aiomultiprocess: Presents a simple interface, while running a full AsyncIO event loop on each child process, enabling levels of concurrency never before seen in a Python application. Each child process can execute multiple coroutines at once, limited only by the workload and number of cores available.
Type Hints⚑
-
Improvement: Explain how to ignore a linter error and a type error.
With
# type: ignore # noqa: W0212
Pydantic⚑
- Improvement: Change parse_obj definition to find how to import pydantic models from dictionary.