gpt4 book ai didi

python - 缺少子进程命令的输出

转载 作者:太空宇宙 更新时间:2023-11-03 11:35:00 25 4
gpt4 key购买 nike

我正在开发一个对本地项目运行 PEP8 样式检查的项目。我尝试使用 subprocess 方法,我能够获取生成的提示终端输出以改进样式并将其保存为字符串。

我生成 PEP8 样式的代码如下:

def run_pep8_style(target):
pep_tips = subprocess.Popen("python pep8.py --ignore=E111,E501 --filename=*.py " + target, shell=False, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
tips = pep_tips.communicate()[0]

print "Style: "
print tips

但是,我尝试使用相同的子流程方法和存储来生成计数,但我没有成功。终端显示输出但未将其捕获到字符串变量中。

def run_pep8_count(target):
pep_tips = subprocess.Popen("python pep8.py --ignore=E111,E501 --count -qq --filename=*.py " + target, shell=False, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
tips = pep_tips.communicate()[0]
print "Count: "
print tips

奇怪的是,我能够将终端文本中的样式列表存储到一个字符串变量中,但是当我 try catch PEP8 计数时它没有返回。计数的终端输出是否与样式列表不同?我是 Python 编程的新手,因此将不胜感激。谢谢。

最佳答案

根据 the docs , pep8.py --count 打印到标准错误:

--count              print total number of errors and warnings to standard
error and set exit code to 1 if total is not null

所以你需要告诉 subprocss.Popen 将 stderr 指向 subprocess.PIPE:

pep_tips = subprocess.Popen("python pep8.py --ignore=E111,E501 --count -qq          
--filename=*.py " + target, shell=False,
stdin=subprocess.PIPE, stdout=subprocess.PIPE,
stderr=subprocess.PIPE)

tips,tips_err = pep_tips.communicate()
print tips_err

关于python - 缺少子进程命令的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6610503/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com