Skip to main content

This is a Python class that will daemonize your Python script so it can continue running in the background

Project description


NAME

DaemonLite is a library for writing system daemons in Python. It is distributed under MIT license.

Based on https://github.com/serverdensity/python-daemon


SYNOPSIS

from DaemonLite import DaemonLite

class Staff(DaemonLite) :
    def run(self) :
        # Do something

staff = Staff('/var/staff/staff.pid')
staff.start()

Actions

start() - starts the daemon (creates PID and daemonizes). stop() - stops the daemon (stops the child process and removes the PID). restart() - does stop() then start().


Foreground

This is useful for debugging because you can start the code without making it a daemon. The running script then depends on the open shell like any normal Python script.

To do this, just call the run() method directly.

staff.run()

DESCRIPTION

This is a Python class that will daemonize your Python script so it can continue running in the background. It works on Unix, Linux and OS X, creates a PID file and has standard commands (start, stop, restart) + a foreground mode.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

DaemonLite-0.0.2.tar.gz (3.2 kB view hashes)

Uploaded source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page