Util for executing a custom script before running any python application or script without modifying the last one.
You may treat it as application pre-start hook.
- patching log configs for a legacy application (sometimes it's pretty hard)
- auto-executing
docker-compose.yml
before running the application - patching the application module (sometimes usefull for debugging)
- any case where you need to inject some temporary logic without modifying the application code base
$ pip install pre-script
$ echo PRE_SCRIPT_ENABLED=1
$ echo 'print("hello from pre-script")' > .pre-script.py
$ echo 'print("hello from app")' > app.py
$ python app.py
$ hello from pre-script
$ hello from app
If required, the script name can be changed via PRE_SCRIPT_FILE
environment variable.
Distributed under the terms of the [MIT license][license], Pre Script is free and open source software.