exscript icon indicating copy to clipboard operation
exscript copied to clipboard

A Python module making Telnet and SSH easy

Results 48 exscript issues
Sort by recently updated
recently updated
newest added

Would it be possible to add a github tag and / or the source distribution in pypi when making new versions of exscript? It would make it possible to create...

hi, with following code,I get the error timeout: ``` conn = Telnet() conn.connect(ip, port) conn.login(read_login()) conn.execute('uname -a') ``` but using terminal,input telnet ip port,I can remote control the device.why? Traceback...

Hi all, with upcoming planned deletion of telnetlib from stdlib (https://peps.python.org/pep-0594/#telnetlib) I wanted to try out using any replacement. telnetlib3 was too complicated to be used, so I wanted to...

Hello there, so i'm using your pkgs and have a question about the read_until Functions in particular, from the Telnet Client Class. I'm using the function like this in my...

Since the `python-future` package isn't working anymore for more recent versions of Python 3 and Python 2 is long time deprecated for now, it would be convenient to remove dependency...

I am looking for a replacement for the depricated: 'telnet' module in python. specifically we use the expect feature of that module. Things pointed me to this package. The specific...

In the telnetlib.py file, the rawq_getchar function returns an empty string (b'') when `self.rawq[self.irawq]` evaluates to 0. This seems to be caused by the line of code: https://github.com/knipknap/exscript/blob/9d5b035f3de4237dc6ecb7437b3ebd0c162bb6ec/Exscript/protocols/telnetlib.py#L574-L576 This issue...

Getting: ``` from Exscript.protocols import SSH2, Telnet File "/home/builder/.local/lib/python3.9/site-packages/Exscript/__init__.py", line 33, in from .key import PrivateKey File "/home/builder/.local/lib/python3.9/site-packages/Exscript/key.py", line 27, in from paramiko import RSAKey, DSSKey ImportError: cannot import name...