internal/tools/: hupper-1.12.1 metadata and description

Homepage Simple index

Integrated process monitor for developing and reloading daemons.

author Michael Merickel
author_email pylons-discuss@googlegroups.com
classifiers
  • Development Status :: 5 - Production/Stable
  • Intended Audience :: Developers
  • License :: OSI Approved :: MIT License
  • Natural Language :: English
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3.7
  • Programming Language :: Python :: 3.8
  • Programming Language :: Python :: 3.9
  • Programming Language :: Python :: 3.10
  • Programming Language :: Python :: 3.11
  • Programming Language :: Python :: 3.12
  • Programming Language :: Python :: Implementation :: CPython
  • Programming Language :: Python :: Implementation :: PyPy
description_content_type text/x-rst
keywords server,daemon,autoreload,reloader,hup,file,watch,process
license MIT
project_urls
  • Documentation, https://docs.pylonsproject.org/projects/hupper/en/latest/
  • Changelog, https://docs.pylonsproject.org/projects/hupper/en/latest/changes.html
  • Issue Tracker, https://github.com/Pylons/hupper/issues
provides_extras testing
requires_dist
  • watchdog; extra == "docs"
  • setuptools; extra == "docs"
  • Sphinx; extra == "docs"
  • pylons-sphinx-themes; extra == "docs"
  • watchdog; extra == "testing"
  • pytest; extra == "testing"
  • pytest-cov; extra == "testing"
  • mock; extra == "testing"
requires_python >=3.7
File Tox results History
hupper-1.12.1-py3-none-any.whl
Size
22 KB
Type
Python Wheel
Python
3
hupper-1.12.1.tar.gz
Size
42 KB
Type
Source
https://img.shields.io/pypi/v/hupper.svg https://github.com/Pylons/hupper/actions/workflows/ci-tests.yml/badge.svg?branch=main Documentation Status

hupper is an integrated process monitor that will track changes to any imported Python files in sys.modules as well as custom paths. When files are changed the process is restarted.

Command-line Usage

Hupper can load any Python code similar to python -m <module> by using the hupper -m <module> program.

$ hupper -m myapp
Starting monitor for PID 23982.

API Usage

Start by defining an entry point for your process. This must be an importable path in string format. For example, myapp.scripts.serve.main.

# myapp/scripts/serve.py

import sys
import hupper
import waitress


def wsgi_app(environ, start_response):
    start_response('200 OK', [('Content-Type', 'text/plain')])
    yield b'hello'


def main(args=sys.argv[1:]):
    if '--reload' in args:
        # start_reloader will only return in a monitored subprocess
        reloader = hupper.start_reloader('myapp.scripts.serve.main')

        # monitor an extra file
        reloader.watch_files(['foo.ini'])

    waitress.serve(wsgi_app)

Acknowledgments

hupper is inspired by initial work done by Carl J Meyer and David Glick during a Pycon sprint and is built to be a more robust and generic version of Ian Bicking’s excellent PasteScript paste serve --reload and Pyramid’s pserve --reload.