vote up 2 vote down star

Is there a cross-platform way to list the processes running on one's computer through a python script? For Unix based system "ps -ef" works, but I am new to Python and don't know a way to write something that would work across any platform.

Thanks!

flag
May be if elaborate on the problem your trying to solve, we could help you better. (Why do you need to look up processes cross-platform?) – monkut Dec 15 '08 at 1:27
Just write a small app that depends on the processes information and want to make ti cross-platform... – Moiz Dec 15 '08 at 5:42

1 Answer

vote up 2 vote down check

Python itself doesn't offer any such functionality. On PyPI, there is the enumprocess package, which supposedly helps; there is also the PSI package. I haven't personally used any of them.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.