k3daemonize

It supplies a command line interface API to start/stop/restart a daemon.


Keywords
python, daemon
License
MIT
Install
pip install k3daemonize==0.1.0

Documentation

k3daemonize

Action-CI Build Status Documentation Status Package

It supplies a command line interface API to start/stop/restart a daemon.

k3daemonize is a component of pykit3 project: a python3 toolkit set.

Help to create daemon process. It supplies a command line interface API to start/stop/restart a daemon.

daemonize identifies a daemon by the pid file. Thus two processes those are set up with the same pid file can not run at the same time.

Install

pip install k3daemonize

Synopsis

import time
import k3daemonize


def run():
    for i in range(100):
        print(i)
        time.sleep(1)


# python foo.py start
# python foo.py stop
# python foo.py restart

if __name__ == '__main__':
    # there is at most only one of several processes with the same pid path
    # that can run.
    k3daemonize.daemonize_cli(run, '/var/run/pid')

Author

Zhang Yanpo (å¼ ç‚Žæ³¼) drdr.xp@gmail.com

Copyright and License

The MIT License (MIT)

Copyright (c) 2015 Zhang Yanpo (å¼ ç‚Žæ³¼) drdr.xp@gmail.com