Python进程管理
python 有什么方法可以在本地或者通过一些在线可用的代码(最好是在 GPL 下)来进行进程管理。 目标类似于 ps 的功能,但最好是在数组、列表和/或字典中。
Is there any way python is natively, or through some code available online (preferably under the GPL), capable of doing process management. The goal is similar to the functionality of ps, but preferably in arrays, lists, and/or dicts.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
http://pypi.python.org/pypi/PSI
http://pypi.python.org/pypi/PSI
这是跨平台的:
http://code.google.com/p/psutil/
This one is cross-platform:
http://code.google.com/p/psutil/
有一个叫做 ProcessManager 的东西,但我以前没有使用过它。
There is something out there called ProcessManager, but I have not used it before.
如果您对某个模块不感兴趣,您还可以查看
/proc
文件系统 procfs。If you're not interested in a module, you might also have a look at the
/proc
filesystem, procfs.