7 Module implementing the client of the cooperation package. |
7 Module implementing the client of the cooperation package. |
8 """ |
8 """ |
9 |
9 |
10 import collections |
10 import collections |
11 |
11 |
12 from PyQt6.QtCore import QObject, pyqtSignal, QProcess |
12 from PyQt6.QtCore import QObject, QProcess, pyqtSignal |
13 from PyQt6.QtNetwork import QHostInfo, QHostAddress, QAbstractSocket, QNetworkInterface |
13 from PyQt6.QtNetwork import QAbstractSocket, QHostAddress, QHostInfo, QNetworkInterface |
14 |
14 |
|
15 from eric7 import Preferences |
|
16 |
|
17 from .Connection import Connection |
15 from .CooperationServer import CooperationServer |
18 from .CooperationServer import CooperationServer |
16 from .Connection import Connection |
|
17 |
|
18 from eric7 import Preferences |
|
19 |
19 |
20 |
20 |
21 class CooperationClient(QObject): |
21 class CooperationClient(QObject): |
22 """ |
22 """ |
23 Class implementing the client of the cooperation package. |
23 Class implementing the client of the cooperation package. |