doc:appunti:prog:python_program_execution
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| doc:appunti:prog:python_program_execution [2016/07/28 09:42] – niccolo | doc:appunti:prog:python_program_execution [2022/07/01 10:56] (current) – [Get the output of a program] niccolo | ||
|---|---|---|---|
| Line 17: | Line 17: | ||
| </ | </ | ||
| - | Same as above, but run in a subshell: | + | Same as above, but run in a subshell |
| <code python> | <code python> | ||
| - | retcode = call(" | + | retcode = subprocess.call(" |
| </ | </ | ||
| Line 28: | Line 28: | ||
| <code python> | <code python> | ||
| - | output = subprocess.Popen([" | + | output = subprocess.Popen([" |
| </ | </ | ||
| Line 37: | Line 37: | ||
| output, stderr = subproc.communicate() | output, stderr = subproc.communicate() | ||
| retcode = subproc.returncode | retcode = subproc.returncode | ||
| - | for line in output.splitlines(): | + | for line in output.decode(' |
| - | print line | + | print(line) |
| </ | </ | ||
| Line 59: | Line 59: | ||
| output = p2.communicate()[0] | output = p2.communicate()[0] | ||
| </ | </ | ||
| + | |||
| + | ===== Write to command standard input ===== | ||
| + | |||
| + | <code python> | ||
| + | cmd_input = [] | ||
| + | cmd_input.append(' | ||
| + | cmd_input.append(' | ||
| + | |||
| + | p = subprocess.Popen(' | ||
| + | p.communicate(os.linesep.join(cmd_input)) | ||
| + | </ | ||
| + | |||
doc/appunti/prog/python_program_execution.1469691754.txt.gz · Last modified: by niccolo
