Mercurial > hg > config
view python/example/rss.py @ 842:03f9657514e9
while we might not want Octave *that* much, we will never want OCAML
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 09 Jul 2017 15:01:16 -0700 |
parents | 7c2dbd45c346 |
children |
line wrap: on
line source
#!/usr/bin/env python import psutil PSNAME = 'python' for process in psutil.process_iter(): try: memory = process.memory_info() if process.name() == PSNAME: print int(memory.rss) except Exception: pass