telnetlib3 icon indicating copy to clipboard operation
telnetlib3 copied to clipboard

Python Telnet server and client Protocol library using asyncio

Results 26 telnetlib3 issues
Sort by recently updated
recently updated
newest added

I've got the following Python code but for some reason telnetlib3 is causing asyncio errors (that is, saying that no asyncio runtime is available when there is one). I'm using...

question

Hi, I'm using the library as a component in Home Assistant. I noticed the library writes a connection line at every connection and users are telling me it's spamming the...

question

Hi there, inside stream_reader and stream_writer (at least) there are calls to "asyncio.get_event_policy().get_event_loop()". That doesn't always work, like in my case - I wanted to provide sync wrapper for async...

bug

the overall lack of documentation for the server part led me to try the example code verbatim. The snippet completes, instead of waiting for a connection. ``` import asyncio, telnetlib3...

bug
docfix

Hi, thanks for telnetlib3. I found this problem was already reported in #55 and #62, but since they were closed issues, I opened a new one: ```python try: reader, writer...

bug

I was troubleshooting some network code and noticed this. The two declarations are: line 159 line 399 1st one is overridden so is not needed.

bug

Hello, would it be possible to create a telnetlib module without this asyncio overhead? In my case this makes the code EXTREMLY more cumbersome, unreadable and complicated. Thanks

enhancement

When using telnetlib3 I tried to close an open connection using ``` reader.close() writer.close() ``` which triggered a deprecation warning `Python.3.10_qbz5n2kfra8p0\LocalCache\local-packages\Python310\site-packages\telnetlib3\stream_reader.py:393: DeprecationWarning: connection_closed deprecated, use feed_eof() instead` However, the documentation...

bug
docfix

My telnet server implementation is affected by an `encoding failed` error that causes a delay of `connect_maxwait=4.0`s until the connection is established. This is a problem for me, since my...

bug
enhancement

I'm currently debugging an issue when a telnet connection is established form a (external) java client to our python telnet server. For this I've tried to reproduce this issue by...