PyMOTW: atexit
Originally posted
· 1 min read
The atexit
module provides a simple interface to register functions to be called when a program closes down normally. The sys
module also provides a hook, sys.exitfunc
, but only one function can be registered there. The atexit
registry can be used by multiple modules and libraries simultaneously.