Skip to content

Instantly share code, notes, and snippets.

@AlwxSin
AlwxSin / daemon.py
Last active September 16, 2016 15:01
Python daemon example
import sys
import os
import time
import atexit
from signal import SIGTERM
class Daemon:
"""
A generic daemon class.