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
What about having it run an http server?
It seems crazy but running a simple web server for administrating your server requires just a few lines using web.py
You can also consider creating a unix pipe.