32 Constructor |
32 Constructor |
33 |
33 |
34 @param url xmlrpc handler URL (string or QUrl) |
34 @param url xmlrpc handler URL (string or QUrl) |
35 @param parent parent object (QObject) |
35 @param parent parent object (QObject) |
36 """ |
36 """ |
37 super(E5XmlRpcClient, self).__init__(parent) |
37 super().__init__(parent) |
38 |
38 |
39 # attributes for the network objects |
39 # attributes for the network objects |
40 self.__networkManager = QNetworkAccessManager(self) |
40 self.__networkManager = QNetworkAccessManager(self) |
41 self.__networkManager.proxyAuthenticationRequired.connect( |
41 self.__networkManager.proxyAuthenticationRequired.connect( |
42 proxyAuthenticationRequired) |
42 proxyAuthenticationRequired) |