xBiggs

Results 1 issues of xBiggs

Debian GNU/Linux 12 (bookworm) ```py async def sftp_dirs(): async with asyncssh.connect(socket.gethostbyname(hostname), username=username, password=password, kex_algs="+diffie-hellman-group-exchange-sha1", server_host_key_algs="+ssh-rsa", encryption_algs="+aes128-cbc") as conn: async with conn.start_sftp_client as sftp: return await sftp.listdir() async def main(): dirs...