3

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.

Siddharth Gupta
  • 1,573
  • 9
  • 24

1 Answers1

3

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)
jxramos
  • 7,356
  • 6
  • 57
  • 105
nagato
  • 93
  • 5