I'm writing a python script to get the running process and their "application name" (e.g. chrome.exe -> Google Chrome). I've no problem to find process name (chrome.exe), but how can I find the application name?
I've already written a database (columns are: processName appName category), but there is another way to get these info using only python? (I would like to use this script on Windows-Linux-MacOS).
Any idea?