I'm running a command line app from a Python script:
os.system(myapp)
myapp contains the path to the app and the required parameters. It works fine but it runs at, I believe, Normal priority which makes the PC sluggish. How can I start the external process at a lower priority?
Thanks.