从CLI控制应用程序的Python

时间:2018-08-01 13:42:21

标签: python

我有一个应用程序,它同时支持GUI和CLI。是否可以使用python使用此CLI命令的任何选项,以便我可以自动化该应用程序的过程集(即,只需单击一下即可替换工作集)

1 个答案:

答案 0 :(得分:1)

使用subprocess

from subprocess import check_output

# check_output returns the output of the command
# note: date is a unix command, try something else if on windows
result = check_output('date', encoding='utf8')

print(result)