I am writing a python program which reads from a queue through a infinite while loop. How can I handle signal sent by OS / Keyboard interrupt(CTRL+C) to break from the while loop and close active connections and files and exit the program gracefully instead of killing the process.
while True:
read_from_file_and_do_something()
## Handle a signal of shutdown here.
## Send email before exiting.
This program will run as a daemon. Thus would require a signal to be sent.
I think signal module is what you are looking for,
def handler(signum, frame):
print 'Signal handler called with signal', signum
signal.signal(signal.SIGABRT, handler)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With