Ron Frederick

Results 195 comments of Ron Frederick

Closing due to inactivity. Feel free to reopen this or open a new issue if you need anything else.

I'm always open to suggestions for new capabilities in AsyncSSH, so if there's something that Paramiko does to help with this situation, I'd be happy to hear about it. Some...

> I've tried to dig down the rabbit hole and you're correct in everything said. Its just a fundamental problem (or simply by design?) of SSH itself. SSH attempts to...

Closing due to inactivity. Feel free to reopen this or open a new issue if you need anything else.

If I understand right, `trade.sh` and any commands inside it would all be running on the remote machine, while AsyncSSH is running on the local machine. So, even if both...

Regarding the terminal type argument, I misspoke -- that needs to be an argument on `conn.run()`, not `asyncio.run()`. More specifically, this would go in `run_client()`, either directly or by passing...

In trade.sh, you could print the environment by just running the "env" command. In trade.py, you could do something like: ```python import os print(os.environ) ``` The output isn't as pretty...

Closing due to inactivity. Feel free to reopen this or open a new issue if you need anything else.

You actually don't need pyOpenSSL in AsyncSSH unless you want support for X.509 certificates. However, if you have it installed, it needs to be at least version 17.0.0. Do you...

Closing due to inactivity. Feel free to reopen this or open a new issue if you need anything else.