On 12/04/2017 14:41, Jean-Paul Calderone wrote:
On Wed, Apr 12, 2017 at 9:37 AM, Chris Norman <chris.norman2@googlemail.com> wrote:



On 12/04/2017 14:21, catch me wrote:
Hey! I don't know I should ask this question or not but as a beginner I have to ask.
I have just started learn python network programming and fortunately found such an amazing Twisted Framework.

Welcome! Glad you found Twisted, it really is awesome!


As a beginner I could not be able to decide where to start I mean what should I make first using twisted framework. I would be very thankful to you for guiding me.

I personally like telnet-like servers. They are very easy to make with the LineReceiver protocol (hint hint), and you can do a lot with them.

If you want telnet then you should probably use twisted.conch.telnet.  It's a little bit more complicated than LineReceiver but it will actually speak telnet for you.  LineReceiver will get you some simple line-oriented interactions, though.


Ah, than you. I could never figure out how to make the proper TelnetProtocol to do anything useful, and line-based is all I've ever really needed.

Thank you for the tip though.