1 # -----------------------------------------------------------------------------
2 # Copyright © 2014-2015 Colin Duquesnoy
3 # Copyright © 2009- The Spyder Development Team
5 # Licensed under the terms of the MIT License
6 # (see LICENSE.txt for details)
7 # -----------------------------------------------------------------------------
9 """Provides QtNetwork classes and functions."""
11 from . import PYQT5
, PYQT6
, PYSIDE2
, PYSIDE6
14 from PyQt5
.QtNetwork
import *
16 from PyQt6
.QtNetwork
import *
18 from PySide2
.QtNetwork
import *
20 from PySide6
.QtNetwork
import *