Skip to content

Instantly share code, notes, and snippets.

@rtfpessoa
Created March 19, 2016 11:28
Show Gist options
  • Save rtfpessoa/e3b1fe0bbfcd8ac853bf to your computer and use it in GitHub Desktop.
Save rtfpessoa/e3b1fe0bbfcd8ac853bf to your computer and use it in GitHub Desktop.
Handle CTRL+C in Python
#!/usr/bin/env python
import signal
import sys
def signal_handler(signal, frame):
sys.exit(0)
signal.signal(signal.SIGINT, signal_handler)
Copy link

ghost commented Jul 4, 2022

Can confirm, still works.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment