1 # -----------------------------------------------------------------------------
2 # Copyright © 2009- The Spyder Development Team
4 # Licensed under the terms of the MIT License
5 # (see LICENSE.txt for details)
6 # -----------------------------------------------------------------------------
8 """Provides QtQml classes and functions."""
10 from . import PYQT5
, PYQT6
, PYSIDE2
, PYSIDE6
13 from PyQt5
.QtQml
import *
15 from PyQt6
.QtQml
import *
17 from PySide6
.QtQml
import *
19 from PySide2
.QtQml
import *