Skip to main content

Library to enable your code run as a daemon process on Unix-like systems.

Project description

# daemonize

## Description daemonize is a library for writing system daemons in Python. It has some bits from [daemonize.sourceforge.net](http://daemonize.sourceforge.net). It is distributed under MIT license.

[![Build Status](https://secure.travis-ci.org/thesharp/daemonize.png)](http://travis-ci.org/thesharp/daemonize)

## Installation You can install it from Python Package Index (PyPI):

$ pip install daemonize

## Usage

from time import sleep from daemonize import Daemonize

pid = “/tmp/test.pid”

def main():
while True:

sleep(5)

daemon = Daemonize(app=”test_app”, pid=pid, action=main) daemon.start()

## File descriptors Daemonize object’s constructor understands the optional argument keep_fds which contains a list of FDs which should not be closed. For example:

import logging from daemonize import Daemonize

pid = “/tmp/test.pid” logger = logging.getLogger(__name__) logger.setLevel(logging.DEBUG) logger.propagate = False fh = logging.FileHandler(“/tmp/test.log”, “w”) fh.setLevel(logging.DEBUG) logger.addHandler(fh) keep_fds = [fh.stream.fileno()]

def main():

logger.debug(“Test”)

daemon = Daemonize(app=”test_app”, pid=pid, action=main, keep_fds=keep_fds) daemon.start()

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

daemonize-2.1.1.tar.gz (3.8 kB view details)

Uploaded Source

File details

Details for the file daemonize-2.1.1.tar.gz.

File metadata

  • Download URL: daemonize-2.1.1.tar.gz
  • Upload date:
  • Size: 3.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for daemonize-2.1.1.tar.gz
Algorithm Hash digest
SHA256 04eb8852a1a69b9ce036e1ca125cd964156595a94d03ae2a2f01cfaa7fb13e9a
MD5 25ab56e08cc5255650a530c35eae279a
BLAKE2b-256 26ebd358d6bc99e3ff56fe94b53eb937c44f18b67099e8252ea48abd2f25726e

See more details on using hashes here.

Supported by

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