feat: TabTools_Andreal

This commit is contained in:
2023-09-21 23:02:02 +08:00
parent 44915f6d19
commit d29104744d
6 changed files with 514 additions and 283 deletions

View File

@ -74,6 +74,9 @@ class AndrealHelper(QObject):
return base64.b64decode(b64result)
def request(self, jsonPath: str, arguments: list[str]):
logger.debug(
f"{self.__class__.__name__} received request {jsonPath=} {arguments=}"
)
runnable = AndrealExecuteRunnable(self.andrealExecutable, jsonPath, arguments)
runnable.signals.error.connect(self.error)
runnable.signals.completed.connect(self.ready)