Skip to content

Instantly share code, notes, and snippets.

@eight04
Created June 19, 2015 08:26
Show Gist options
  • Save eight04/fe6dd335e264a6a74e7d to your computer and use it in GitHub Desktop.
Save eight04/fe6dd335e264a6a74e7d to your computer and use it in GitHub Desktop.
List all process
#! python3
import psutil, sys
print(sys.version_info, psutil.__version__)
for p in psutil.process_iter():
print(p.pid)
try:
print(" ", p.name())
except Exception as err:
print(" failed to get name", type(err))
try:
print(" ", p.memory_percent())
except Exception as err:
print(" failed to get memory", type(err))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment