SSH Pipe with Python's Subprocess and Multiprocessing
How to pass objects to remote system using SSH and Multiprocessing
Synopsis
Previous post on this subject used os.fork and os.pipe to issue SSH in a child process. Instead, this post uses multiprocessing Process and Pipe to make it more platform agnostic. Per audience request, this post will …