Skip to content

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

License

Notifications You must be signed in to change notification settings

dentist128/uc_daemon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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()))    

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages