rthooks.dat - Run-time hooks for PyInstallerΒΆ

A run-time hook might be required for several modules, but of course should only run once. Also some module might require several run-time hooks. This is why run-time hooks are to be listed in the here.

A run-time hooks data file consists of a single dictionary.

{

Each key is the name of a module.

    'pyi_hooksample': [

Each value is a list of run-time hooks to include for this module. See pyi_rth_hooksample.py - A run-time hook for the hook sample library.

        'pyi_rth_hooksample.py'
    ],
}