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 QtDBus classes and functions."""
17 QtBindingMissingModuleError
,
22 from PyQt5
.QtDBus
import *
24 from PyQt6
.QtDBus
import *
26 raise QtBindingMissingModuleError(name
='QtDBus')
28 if sys
.platform
!= 'win32':
29 from PySide6
.QtDBus
import *
31 raise QtModuleNotInOSError(name
='QtDBus')