How to Implement telnet server in Python

Source: Internet
Author: User
This article mainly introduces how to implement the telnet server in Python. It involves related skills related to connecting to the server via Telnet in Python and has some reference value, for more information about how to implement the telnet server in Python, see the following example. Share it with you for your reference. The specific implementation method is as follows:

import threading class myThread(threading.Thread):  def __init__(self,conn,add):    threading.Thread.__init__(self)    self.inputstr = ''  self.connection=conn  self.address=add  def run(self):  ii=0    while True:    self.connection.settimeout(50)      buf = self.connection.recv(1024)    if buf.rfind("\n") > -1 :         print "**-"+self.inputstr        self.connection.close()         break      else:         self.inputstr+=buf    if ii==0:      self.connection.send(buf)    ii+=1        continueif __name__ == '__main__':   import socket   sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)  sock.bind(('192.168.101.103', 8014))   sock.listen(5)  while True:     try:      connection,address = sock.accept()      ithread=myThread(connection,address)      ithread.start()    except socket.timeout:       print 'time out'

I hope this article will help you with Python programming.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.