13 lines
198 B
Python
13 lines
198 B
Python
|
from time import sleep
|
||
|
from daemonize import Daemonize
|
||
|
|
||
|
pid = "/tmp/test.pid"
|
||
|
|
||
|
|
||
|
def main():
|
||
|
while True:
|
||
|
sleep(5)
|
||
|
|
||
|
daemon = Daemonize(app="test_app", pid=pid, action=main)
|
||
|
daemon.start()
|