Twisted-02 chatroom

Source: Internet
Author: User

Using the chatroom written by twisted, use the Telenet that comes with Windows as the client.

From Twisted.internet.protocol import factoryfrom twisted.internet import reactorfrom twisted.protocols.basic Import Linereceiverfrom twisted.internet.endpoints Import serverfromstring "window:use telnet localhost 8888to enter chat The Othersctrl +] to disconnect to server "class Chatroomprotocol (linereceiver):d ef __init__ (self): self._ Name = Nonedef Connectionmade (self): self.sendline (' what\ ' your name? ') def linereceived (self, line): If isn't self._name:if not Line.strip () or line in list (ITER (self.factory._users)): Self.sendline (' Your name is corrupt or invalid, please reinput Your new name! ')  Returnself._name = Lineself.factory._users[line] = self Self.sendline ("Welcome%s to our chat guest"% self._name) returnmsg = '%s says:%s '% (Self._name, line) Self.factory.boardMessage (msg) def connectionlost (self, reason): Msg = '%s Says:bye by E! '% self._nameself.factory.boardmessage (msg) del Self.factory._users[self._name]class chatroomfactory (Factory): protocol = Chatroomprotocoldef __init__ (self): Self._users = {}def boardmessage (self, msg): For I in Self._users:self._users[i].sendline (msg) if __ name__ = = ' __main__ ': serverfromstring (reactor, ' tcp:8888 '). Listen (Chatroomfactory ()) Reactor.run ()


Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

Twisted-02 chatroom

Related Article

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.