WolfgangVorst
Results
1
comments of
WolfgangVorst
It looks like the proxy is the issue. Perhaps I didn't update network.py correctly. class RequestManager: def __init__(self): self._net = QNetworkAccessManager() proxy = QNetworkProxy() proxy.setType(QNetworkProxy.ProxyType.Socks5Proxy) proxy.setHostName( "IP") proxy.setPort(Port) self._net.setProxy(proxy) self._net.finished.connect(self._finished)...