I was wondering if there is a module that allows the program to see what tasks are running. For example, if I am running Google Chrome, Python Idle, and the program, it should see all 3. (It is most important that it can see its self.)

link|improve this question
1  
Good. I can't give you reputation though unless you ask it as a question. – PyRulez Feb 1 at 16:52
Ok, let it not be unanswered. – reclosedev Feb 1 at 17:15
feedback

1 Answer

up vote 1 down vote accepted

psutil

psutil is a module providing an interface for retrieving information on all running processes and system utilization (CPU, disk, memory, network) in a portable way by using Python.

link|improve this answer
Oh ya, in case you where wondering, I needed a module like this, so I could make a program find information on its self, and therefore become self aware. – PyRulez Feb 1 at 17:28
feedback

Your Answer

 
or
required, but never shown

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