Skip to content
Advertisement

How do I capture SIGINT in Python?

I’m working on a python script that starts several processes and database connections. Every now and then I want to kill the script with a Ctrl+C signal, and I’d like to do some cleanup.

In Perl I’d do this:

JavaScript

How do I do the analogue of this in Python?

Advertisement

Answer

Register your handler with signal.signal like this:

JavaScript

Code adapted from here.

More documentation on signal can be found here.  

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement