Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/torfsen/service

Easy implementation of Unix background services in Python
https://github.com/torfsen/service

Last synced: 3 months ago
JSON representation

Easy implementation of Unix background services in Python

Awesome Lists containing this project

README

        

Python background services made easy
####################################

.. image:: https://travis-ci.org/torfsen/service.svg?branch=master
:target: https://travis-ci.org/torfsen/service

The Python ``service`` package makes it easy to write Unix *services*, i.e.
background processes ("daemons") that are controlled by a foreground
application (e.g. a console script)::

from service import Service

class MyService(Service):
def run(self):
while True:
do_work()

if __name__ == '__main__':
import sys

if len(sys.argv) != 2:
sys.exit('Syntax: %s COMMAND' % sys.argv[0])

cmd = sys.argv[1].lower()
service = MyService('my_service', pid_dir='/tmp')

if cmd == 'start':
service.start()
elif cmd == 'stop':
service.stop()
elif cmd == 'status':
if service.is_running():
print "Service is running."
else:
print "Service is not running."
else:
sys.exit('Unknown command "%s".' % cmd)

For details, please see the documentation_.

.. _documentation: http://python-service.readthedocs.org/

Installation
============
Installation is easy via pip_::

pip install service

.. _pip: https://pip.pypa.io/en/latest/index.html