1

我正在尝试使用 bernstein 的 daemon-tools 启动一个守护进程。使用 normaly shell 它工作得很好,但是我如何使用守护程序工具启动一个简单的 python 代码作为守护程序?例如像这样简单的事情。

def run(name):
  while name:
    print("Hello"+name)
    return "whoooheee"

这应该是一个在后台运行的守护进程,如果它收到类似的调用

result = run.run("Bob")

从另一个程序它应该打印 Hello 并将结果返回给该程序。

使用 bernstein 的 daemon-tools 可以做到这一点吗?

谢谢你。

是的,它必须是 daemon-tools :)

4

0 回答 0