Command Line File Watcher for Qt ui file to python file.
Project description
pyuiw
Command Line Watcher for auto compile Qt ui to python file.
Original Tool Source from pyside2-tools pyside2uic
I modified some code for customization.
Install pyuiw
pip install pyuiw
How to Use
python -m pyuiw
pyuiw
two command run the same alternatively.
pyuiw -h
run this command can show up the help documentation.
usage: pyuiw [-h] [-p] [-o FILE] [-x] [-d] [-i N] [--from-imports] [--useQt] [--QtModule module] [--black] [--isort] [-w [WATCH [WATCH ...]]] [-e [EXCLUDE [EXCLUDE ...]]]
[-c FILE]
Qt User Interface Compiler version , running on PySide2 5.15.2.
Command Line Watcher for auto compile Qt ui to python file.
Usage Example:
optional arguments:
-h, --help show this help message and exit
-p, --preview show a preview of the UI instead of generating code
-o FILE, --output FILE
write generated code to FILE instead of stdout
<EXP> to define a output expression (default: <${py_dir}/${py_name}_ui.py>)
${py_dir} - input python directory path
${py_name} - input python file name
-x, --execute generate extra code to test and display the class
-d, --debug show debug output
-i N, --indent N set indent width to N spaces, tab if N is 0 (default: 4)
Code generation options:
--from-imports generate imports relative to '.'
--useQt using Qt.py module for Qt compat
--QtModule module customize import Qt module name | only work in --useQt false
--black using black format code
--isort using isort format code
Watcher options:
-w [WATCH [WATCH ...]], --watch [WATCH [WATCH ...]]
watch files or directories
-e [EXCLUDE [EXCLUDE ...]], --exclude [EXCLUDE [EXCLUDE ...]]
exclude files re expression
-c FILE, --config FILE
read specific config file
Configuration
pyuiw
would read the pyproject.toml
by default or you can set the --config
flag to read specific config file.
here is the default options in config file.
[tool.pyuiw]
QtModule = "Qt"
exclude = [] # using glob pattern for exclude
useQt = true
watch = []
execute = true
debug = false
from_imports = false
preview = false
indent = 4
output = <${py_dir}/${py_name}_ui.py>
black = true
isort = true
here is a example setup.
[tool.pyuiw]
exclude = ["*launcher*"] # exclude file container `launcher`
watch = ["./tests/ui","./test2/test.ui"] # read the file or directory get all the `.ui` file for watch
TodoList
- import code to the top (implement isort)
- black format code
- implement Qt.py for
QApplication.translate
- customize import
- poetry pypi python package
- poetry command line tool
- unittest
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pyuiw-0.2.1.tar.gz
(66.1 kB
view details)
Built Distribution
pyuiw-0.2.1-py3-none-any.whl
(52.5 kB
view details)
File details
Details for the file pyuiw-0.2.1.tar.gz
.
File metadata
- Download URL: pyuiw-0.2.1.tar.gz
- Upload date:
- Size: 66.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.8.12 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7084d11050fb208f12cf9f12838b72ab94ee165fc24267e996cbdca54b4d3ef3 |
|
MD5 | 4b89a269ce2109b0f58659cabf575b39 |
|
BLAKE2b-256 | 6d7ff5299d1b08530950343d57bfc712b1a62cc129b8174f73936512113e58c1 |
File details
Details for the file pyuiw-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: pyuiw-0.2.1-py3-none-any.whl
- Upload date:
- Size: 52.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.8.12 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d6ec94a32152026c8bba3fabe88d506b0cebef86f2dac2e44437c4b5677ca1b7 |
|
MD5 | 88c971794ac558a42f5984e631f28349 |
|
BLAKE2b-256 | f33d011e0cf8243af7454161a5c91636b3ad67a40d453ef6fd4cc74fb9546cb5 |