📜  站点:github.com python ssh - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:33.605000             🧑  作者: Mango

代码示例1
import asyncio, asyncssh, sys

async def run_client():
    async with asyncssh.connect('localhost') as conn:
        result = await conn.run('echo "Hello!"', check=True)
        print(result.stdout, end='')

try:
    asyncio.get_event_loop().run_until_complete(run_client())
except (OSError, asyncssh.Error) as exc:
    sys.exit('SSH connection failed: ' + str(exc))