Skip to main content

Signal-triggered process reloader

Project description

Pyexec allows to setup signal handler, which will reload current process. This functionality might be used to restart application, e.g. when the code’s been changed, by sending an appropriate signal to the python process.

Exemplary usage:

import os
import pyexec
import signal
import sys

def handler():
    sys.stderr.write('Reloading process!\n')
    return sys.argv + ['reloaded']

sys.stderr.write('[%d]: argv: %r\n' % (os.getpid(), sys.argv))
pyexec.install(signal.SIGUSR1, handler)
signal.pause()

The output from the python process after sending the USR1 signal twice:

$ python example.py
[20785]: argv: ['example.py']
Reloading process!
[20785]: argv: ['example.py', 'reloaded']
Reloading process!
[20785]: argv: ['example.py', 'reloaded', 'reloaded']

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

pyexec-1.1.1.tar.gz (2.2 kB view hashes)

Uploaded Source

Built Distribution

pyexec-1.1.1-py2.py3-none-any.whl (3.6 kB view hashes)

Uploaded Python 2 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