Start child process with limited priority

2019-06-23 05:21发布

I'm looking for a way how to start process with Pythons subprocess module with low system priority, I've already found:

There's no mentioning of priority in subprocess manual.

I already have solution that seems to be working:

self.start_low_priority =  ('cmd', '/c', 'start', '/MIN', '/LOW', '/B', '/WAIT')

NOTE: switches /B /WAIT has to be in this order for this to work

And use it as:

args = self.start_low_priority + ( 'foo.exe', 'bar', 'foobar')
subprocess.call( args, shell=False)

But this solution doesn't seem to be the right and clean way plus Process Explorer is unable to build correct "Process tree" from applications started like this (thus you don't have ability to kill process tree).

Is there any good practice way to do this for windows? Doesn't Python provide any multiplatform solution for this that I've missed?

1条回答
Root(大扎)
2楼-- · 2019-06-23 06:05

You can use the psutil library. In particular you can set the priority setting psutil.Process.nice to the desired value.

See also this answer for an example.


Edit: Looking at the psutil's documentation setting Process.nice directly is deprecated, you should use Process.nice(value) instead.

查看更多
登录 后发表回答