Python process control

Is there any python way inherently or through some code available online (preferably under the GPL) that is able to perform process control. The goal is similar to ps functionality, but preferably in arrays, lists, and / or dicts.

+6
python process ps
source share
4 answers
+2
source share

This is cross platform: http://code.google.com/p/psutil/

+2
source share

There is something there called ProcessManager , but I have not used it before.

0
source share

If you are not interested in the module, you can also look at the /proc , procfs file system.

0
source share

All Articles