Hi, here a little test I made to implement a connection class. import sys import asyncio import logging from typing import List import socket import asyncssh class Ovc: def __init__(self, ip: str): ...