We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In response to #99 and #129, provide a safe conversion from .ui files compiled with PySide2 to an equivalent Qt.py-compatible module.
.ui
From a plain-text Python module, produce a module with full cross-binding compatibility with Qt.py using plain old search-and-replace.
$ pyside2-uic.exe my_ui.ui -o my_ui.py $ python -m Qt --convert my_ui.py # save original as `original_my_ui.py` $ cat my_ui.py
The text was updated successfully, but these errors were encountered:
Implement mottosso#131
3653428
Merge pull request #132 from abstractfactory/master
a6feba3
Implement #131
Implemented in 0.5.0.
Sorry, something went wrong.
I guess that with PR #142 merged it should now also be possible to implement --compile.
--compile
No branches or pull requests
Goal
In response to #99 and #129, provide a safe conversion from
.ui
files compiled with PySide2 to an equivalent Qt.py-compatible module.Implementation
From a plain-text Python module, produce a module with full cross-binding compatibility with Qt.py using plain old search-and-replace.
$ pyside2-uic.exe my_ui.ui -o my_ui.py $ python -m Qt --convert my_ui.py # save original as `original_my_ui.py` $ cat my_ui.py
The text was updated successfully, but these errors were encountered: