The Getting Started docs for asyncssh give the following hello example:
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))
However, this will not run, because async with is not supported in Python 3.4:
async with asyncssh.connect('localhost', username='squirtle', password='xxxxxxxxxxxx') as conn:
^