About Envoy Recently I stumble upon Envoy. Envoy is a wrapper around the subprocess module and is supposed to humanize subprocess of Python. Its written by Kenneth Reitz (the author of "Requests: HTTP for Humans") Why use Envoy? It was written to be an easy to use alternative to subprocess. ...
Subprocess Overview For a long time I have been using os.system() when dealing with system administration tasks in Python. The main reason for that, was that I thought that was the simplest way of running Linux commands. In the official python documentation we can read that subprocess should be used ...