6

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.

Sridhar Ratnakumar
  • 81,433
  • 63
  • 146
  • 187
cpf
  • 1,461
  • 2
  • 15
  • 26

4 Answers4

2

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

eadmaster
  • 1,347
  • 13
  • 23
2

http://pypi.python.org/pypi/PSI

vartec
  • 131,205
  • 36
  • 218
  • 244
0

If you're not interested in a module, you might also have a look at the /proc filesystem, procfs.

Mattie
  • 20,280
  • 7
  • 36
  • 54
0

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

Brian Lyttle
  • 14,558
  • 15
  • 68
  • 104