Exit an endless loop Python program
This method uses an interrupt to capture keyboard CTRL+C entered on the command line, but then cleanly exits from the program’s main loop.
import signal
import time #Only needed for the usage of sleep()
exit_program_interrupt_triggered = False
#*********************************************
#*********************************************
#********** KEYBOARD SIGINT HANDLER **********
#*********************************************
#*********************************************
def keyboard_signint_signal_handler(signal, frame):
global exit_program_interrupt_triggered
print("Keyboard SIGINT")
exit_program_interrupt_triggered = True
signal.signal(signal.SIGINT, keyboard_signint_signal_handler) #signal.SIGINT gives an interrupt when Ctrl+C or Ctrl+F2 is typed on the keyboard
#***********************************
#***********************************
#********** MAIN FUNCTION **********
#***********************************
#***********************************
while True: #(Do forever)
#<<<<<Do program stuff
#----- CHECK FOR EXIT PROGRAM INTERRUPT OCCURED -----
if exit_program_interrupt_triggered:
print("Exiting main loop")
break
#Sleep to avoid cpu lockup
time.sleep(0.01) #Pause time in seconds
#END OF while True:
print("Shutting down")
USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through mini sites like this. We hope you find the site helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support on this site. If you need help with a problem please use one of the many online forums.