August 2018
Intermediate to advanced
366 pages
10h 14m
English
In some cases, especially when writing system tools, there might be work that you need to offload to another command. For example, if you have to decompress a file, in many cases, it might make sense to offload the work to gunzip/zip commands instead or trying to reproduce the same behavior in Python.
While there are many ways in Python to handle this work, they all have subtle differences that might make the life of any developer hard, so it's good to have a generally working solution that tackles the most common issues.