Qt Resources¶
QtPie builds on top of Qt and its Python bindings. Here are the official resources for learning more.
Qt Documentation¶
- Qt Documentation - Official Qt docs (C++ focused, but concepts apply)
PySide6 (Recommended)¶
- Qt for Python - Official PySide6 documentation
- QtWidgets Reference - All widget classes
- PySide6 on PyPI
PyQt6¶
- PyQt6 by Riverbank Computing - Official PyQt home
- PyQt6 on PyPI
Which Should I Use?¶
PySide6 is recommended because:
- Official Qt binding maintained by the Qt Company
- LGPL licensed (can use in commercial projects without licensing fees)
- Better long-term support
PyQt6 is also excellent:
- Mature, battle-tested
- GPL licensed (requires open-source or commercial license)
- Slightly different signal/slot syntax in some edge cases
QtPie works identically with both. Pick one and go.