PyMOTW: pipes
Originally posted
· 1 min read
The pipes
module implements a class to create arbitrarily complex Unix command pipelines. Inputs and outputs of the commands can be chained together as with the shell |
operator, even if the individual commands need to write to or read from files instead of stdin
/stdout
.