refactor: Replace paramiko with asyncssh for SSH connections

Switches the SSH implementation from `paramiko` to `asyncssh` for
improved capabilities and performance. Updates logic in SSH tunnel
handling, authentication, and dependencies.

Signed-off-by: Sven Sager <akira@narux.de>
This commit is contained in:
2026-08-06 09:59:54 +02:00
parent 50915fd07c
commit 23c09949bb
5 changed files with 131 additions and 117 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ setup(
install_requires=[
"keyring",
"PyQt5",
"paramiko",
"asyncssh",
"revpimodio2",
"zeroconf"
],