Python Process Daemon Tool.
Project description
apdaemon: Python Process Daemon Tool.
====================================
Install
-------
via pip ::
pip3 install apdaemon
example::
from apdaemon.daemon import daemon
@daemon(service="maind")
def main():
import time
while True:
print("hello world")
time.sleep(3)
if __name__ == '__main__':
main()
run command: python3 daemon.py [start[default]|status|stop|restart]
====================================
Install
-------
via pip ::
pip3 install apdaemon
example::
from apdaemon.daemon import daemon
@daemon(service="maind")
def main():
import time
while True:
print("hello world")
time.sleep(3)
if __name__ == '__main__':
main()
run command: python3 daemon.py [start[default]|status|stop|restart]
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
apdaemon-0.2.8.tar.gz
(2.7 kB
view hashes)