I've looked about the psutil library (https://code.google.com/archive/p/psutil/wikis/Documentation.wiki) and got some useful things like
```
PROCESS_ATTRS = ['username', 'cpu_num', 'num_ctx_switches', 'pid', 'memory_full_info', 'connections', 'cmdline', 'create_time', 'ionice', 'num_fds', 'memory_maps', 'cpu_percent', 'terminal', 'ppid', 'cwd', 'nice', 'status', 'cpu_times', 'io_counters', 'memory_info', 'threads', 'open_files', 'uids', 'num_threads', 'exe', 'name', 'gids', 'cpu_affinity', 'memory_percent', 'environ']
for proc in psutil.process_iter():
print("Querying process: %s [%s]" % (proc.name(), proc.pid))
print proc.as_dict(attrs=PROCESS_ATTRS)
```
Is there any other library for this, or any useful methods about psutil that I'm missing?
Thanks in advance!
More examples here: http://psutil.readthedocs.io/en/latest/#filtering-and-sorting-processes
Note: the doc you're using is ancient. psutil is now hosted on github.