Run Atexit() When Python Process Is Killed
I have a python process which runs in background, and I would like it to generate some output only when the script is terminated. def handle_exit(): print('\nAll files saved in
Solution 1:
Try signal.signal. It allows to catch any system signal:
import signal
def handle_exit():
print('\nAll files saved in ' + directory)
generate_output()
atexit.register(handle_exit)
signal.signal(signal.SIGTERM, handle_exit)
signal.signal(signal.SIGINT, handle_exit)
Now you can kill {pid}
and handle_exit
will be executed.
Solution 2:
To enable signals when debugging PyCharm on Windows:
- Within PyCharm hit
Ctrl + Shift + A
to bring up the "Find Actions..." menu - Search for "Registry" and hit enter
- Find the key
kill.windows.processes.softly
and enable it (you can start typing "kill" and it will search for the key) - Restart PyCharm
Solution 3:
To check your system and see which signal is being called:
import signal
import time
defhandle_signal(sig_id, frame):
sig = {x.value: x for x in signal.valid_signals()}.get(sig_id)
print(f'{sig.name}, {sig_id=}, {frame=}')
exit(-1)
for sig in signal.valid_signals():
print(f'{sig.value}: signal.{sig.name},')
signal.signal(sig, handle_signal)
time.sleep(30)
Post a Comment for "Run Atexit() When Python Process Is Killed"