1 # -*- coding: utf-8 -*-
3 # Copyright © 2014-2015 Colin Duquesnoy
4 # Copyright © 2009- The Spyder Development Team
6 # Licensed under the terms of the MIT License
7 # (see LICENSE.txt for details)
10 Provides QtNetwork classes and functions.
13 from . import PYQT5
, PYSIDE2
, PYQT4
, PYSIDE
, PythonQtError
17 from PyQt5
.QtNetwork
import *
19 from PySide2
.QtNetwork
import *
21 from PyQt4
.QtNetwork
import *
23 from PySide
.QtNetwork
import *
25 raise PythonQtError('No Qt bindings could be found')