Communicating with a running python daemon

前端 未结 8 1646
一个人的身影
一个人的身影 2020-12-07 07:45

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

8条回答
  •  借酒劲吻你
    2020-12-07 08:34

    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.

提交回复
热议问题