Skip to content
/ hupper Public

in-process file monitor / reloader for reloading your code automatically during development

License

Notifications You must be signed in to change notification settings

Pylons/hupper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

b2c564c · Nov 12, 2024
Jan 26, 2024
Mar 8, 2019
Nov 12, 2024
Nov 12, 2024
May 12, 2017
Mar 23, 2019
Nov 4, 2016
Jan 26, 2024
Jan 26, 2024
Dec 28, 2022
Mar 23, 2023
Jan 3, 2017
Jan 26, 2024
Dec 27, 2022
Apr 2, 2023
Aug 10, 2023
Jan 26, 2024
Apr 2, 2023
Jan 26, 2024

Repository files navigation

hupper

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.