{"library":"pyqt6-qt","title":"PyQt6-Qt Core Components","description":"The `pyqt6-qt` package is a crucial runtime dependency for `PyQt6`, providing the necessary compiled Qt binaries and libraries. It is not intended for direct import or use by application developers but is automatically installed and utilized by the `PyQt6` package to enable GUI functionality. The current version is 6.0.1, reflecting its close tie to the PyQt6 release cycle.","language":"python","status":"active","last_verified":"Fri Apr 17","install":{"commands":["pip install pyqt6-qt","pip install PyQt6"],"cli":null},"imports":["from PyQt6.QtWidgets import QApplication"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import sys\nfrom PyQt6.QtWidgets import QApplication, QLabel, QWidget\n\n# Note: pyqt6-qt provides the underlying Qt libraries,\n# enabling the functionality imported from PyQt6.\n\ndef main():\n    app = QApplication(sys.argv)\n    \n    window = QWidget()\n    window.setWindowTitle('PyQt6-Qt Enabled App')\n    window.setGeometry(100, 100, 280, 80)\n    \n    hello_label = QLabel('Hello, PyQt6!', parent=window)\n    hello_label.move(60, 15)\n    \n    window.show()\n    sys.exit(app.exec())\n\nif __name__ == '__main__':\n    main()","lang":"python","description":"This quickstart demonstrates a basic PyQt6 application. While `pyqt6-qt` is not directly imported, it is a mandatory runtime dependency that provides the underlying Qt shared libraries, making the `PyQt6` imports and functionality possible. You typically install `PyQt6` which then pulls in `pyqt6-qt`.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}