Gracefully handling keyboard interrupt for Python multi-processing
I am working on a project which runs two separate python processes. When I do a ctrl + c to end the program, I would like the program to end gracefully. I can produce a minimum working version of the code through the following: from multiprocessing import Process import os import sys import time class… Read More Gracefully handling keyboard interrupt for Python multi-processing