/MyDaemon

Python3 daemon module

Primary LanguagePythonMIT LicenseMIT

About

Python3 daemon module

Table of contents

Installation

pip3 install mydaemon

Examples

Daemon

See sample Python script which run as a service (daemon)

python3 myservice.py start
python3 myservice.py restart
python3 myservice.py stop

Background process

See sample Python script which run as a background process. Use "stop" parameter to force to stop.

python3 myproc.py start 1
python3 myproc.py start 2
python3 myproc.py start 3
python3 myproc.py stop 2