Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.19 KB

README.rst

File metadata and controls

32 lines (25 loc) · 1.19 KB

License Release Supported versions Docs Contact Blog

graceful-shutdown-py

Helps to support graceful shutdown for your python application.

Example of usage

Simple

from graceful_shutdown import ExitSignalHandler

shutdown = ExitSignalHandler()
while not shutdown.triggered:
    sleep(1)