Is it possible to set the name of the Processes spawned by multiprocessing.Process or billiard.Process. SOmething like:
import billiard
for d in list:
processes.append(billiard.Process(target=evaluate))
for p in processes:
p.name = 'someID'
p.start()
I want to find those specific processes afterwards while they are running with:
import psutil
for proc in psutil.process_iter():
if proc.name() == 'someID':
print(proc)