It supplies a command line interface API to start/stop/restart a daemon.
Project description
k3daemonize
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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
k3daemonize-0.1.0.tar.gz
(4.8 kB
view hashes)
Built Distribution
Close
Hashes for k3daemonize-0.1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 54b569ce037c7f16a405da58545c0c319d4a7baf4598db4dfb7de9cb8d6261f6 |
|
MD5 | 03fd8d2b8c39ac71d08b637f3ce170cf |
|
BLAKE2b-256 | d5bf5e7b75f9c66e6dd028feebba965ffda9cf961542766e581e6b9fb3fe0b02 |