I wrote a small Python application that runs as a daemon. It utilizes threading and queues.
I\'m looking for general approaches to altering this application so that
Assuming you're under *nix, you can send signals to a running program with kill from a shell (and analogs in many other environments). To handle them from within python check out the signal module.
kill