python:在字典中从ps命令重新创建系统进程树

时间:2015-03-02 14:46:27

标签: python dictionary process ps pstree

我是python的新手,我试图在python字典中重新创建像unix pstree这样的进程层次结构。

不幸的是我无法使用精彩的psutil库因为我没有权限搜索/ proc路径。

有人已经做过这个练习吗?

1 个答案:

答案 0 :(得分:1)

如果要运行pstree,可以使用子进程:

from subprocess import check_output


out = check_output(["pstree","-u","foo"])
print(out)