How to make Python script run as service?
I use this code to daemonize my applications. It allows you start/stop/restart the script using the following commands. python myscript.py start python myscript.py stop python myscript.py restart In addition to this I also have an init.d script for controlling my service. This allows you to automatically start the service when your operating system boots-up. Here … Read more