Skip to main content

A set of classes and functions for demonizing a process and related tools..

Project description

uc_daemon

A set of classes and functions for demonizing a process and related tools.

It is part of the Unicon project.

https://unicon.10k.me

Usage:

Install
pip install --user uc-daemon
and use
import uc_daemon

Functions:

daemonize()

Become a daemon. To base process returns daemonized process id on successful and less than zero on fails. To daemonized process returns zero.

redirectio(handle)

Redirects standart descriptors to specified file handle.

Global constants

LOGGER

You may override this constant to manage debugging messages.

Example:

import os
import sys
import uc_daemon

pid = uc_daemon.daemonize()

if (pid == 0):
    print("I'm daemon! My pid is %d" % os.getpid())
else:
    print("Daemon started with pid %d and my pid is %d" % (pid, os.getpid()))    

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

uc_daemon-0.0.1.tar.gz (2.8 kB view hashes)

Uploaded Source

Built Distribution

uc_daemon-0.0.1-py3-none-any.whl (15.1 kB view hashes)

Uploaded Python 3

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