in my script, i call an app from os.system()
command = f"python -m snakeviz {filename}"
os.system(command)
the problem is that this application is freezing the console, therefore freezing my python plugin.
we cannot input anything, ("exit" command won't work) the only way to close the terminal is by running CTRL+C shortcut, and the terminal might be hidden..
this app has no reason to keep running it just open a webpage, how can I force quit the command, without losing the rest of my script?