Non trovo la docstring molto chiara:
def compileUiDir(dir, recurse=False, map=None, **compileUi_args):
"""compileUiDir(dir, recurse=False, map=None, **compileUi_args)
Creates Python modules from Qt Designer .ui files in a directory or
directory tree.
dir is the name of the directory to scan for files whose name ends with
'.ui'. By default the generated Python module is created in the same
directory ending with '.py'.
recurse is set if any sub-directories should be scanned. The default is
False.
map is an optional callable that is passed the name of the directory
containing the '.ui' file and the name of the Python module that will be
created. The callable should return a tuple of the name of the directory
in which the Python module will be created and the (possibly modified)
name of the module. The default is None.
compileUi_args are any additional keyword arguments that are passed to
the compileUi() function that is called to create each Python module.
"""
per quanto riguarda l'argomento della parola chiave della mappa e non esiste un semplice esempio per utilizzarlo.
Si aspetta un argomento sulla mappa? come in:
uic.compileUiDir("ui/", map=("ui/", "../widget/test.py"))
e come si forma?
In pratica ho un paio di file .ui
nella directory ui
e desidero compilarli e posizionare i file .py
risultanti in un'altra directory chiamata widget
.
Hanno nomi come test1Widget.ui
, test2Widget.ui
, ecc. e vorrei che fossero rinominati in test1.py
, test2.py
, ecc.
Qualcuno può darmi dei consigli per favore?