Mercurial > hg > config
view python/example/rss.py @ 928:84543f2cda0d
restore my real email that companies keep making me change
| author | Jeff Hammel <k0scist@gmail.com> | 
|---|---|
| date | Tue, 14 Oct 2025 14:20:55 -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
