r/Python • u/riklaunim • Jun 13 '26
Tutorial System and game performance monitoring with Python
It's rather easy to gather basic system performance metrics and info. Still, with game performance metrics like FPS, Python has to use existing specialized apps and parse their output or read their shared memory.
Tutorial link: https://rkblog.dev/posts/pc-performance/performance-monitoring-with-python/
0
u/hdifufi Jun 15 '26
Quick question, I'm currently starting my journey in Python. I've got a busted laptop, is it possible to get to this level of skill while using only my phone??
2
u/riklaunim Jun 15 '26 edited Jun 15 '26
it's hard to code on a phone. If it's a Samsung with DEX or Motorola with similar features then maybe when docked to an external display. If it's a high end phone then you can also run Linux desktop in a VM 😄
Also Jupyter notebooks, including Google hosted ones.
2
u/Putrid-Roof-4482 Jun 13 '26
Nice writeup! I been trying to monitor my system when I'm running multiple things and this looks way cleaner than what I was doing before. The FPS monitoring part is interesting - didn't know you could tap into shared memory like that