<DIV>Hi</DIV>
<DIV>&nbsp;</DIV>
<DIV>Thanks for the quick reply.</DIV>
<DIV>&nbsp;</DIV>
<DIV>PLease let me know if the twisted word chat server&nbsp;&nbsp; is available as a software download??</DIV>
<DIV>From where can i download the server and client software?</DIV>
<DIV>&nbsp;</DIV>
<DIV>Thanks<BR><B><I>twisted-python-request@twistedmatrix.com</I></B> wrote:</DIV>
<BLOCKQUOTE class=replbq style="BORDER-LEFT: #1010ff 2px solid; MARGIN-LEFT: 5px; PADDING-LEFT: 5px">Send Twisted-Python mailing list submissions to<BR>twisted-python@twistedmatrix.com<BR><BR>To subscribe or unsubscribe via the World Wide Web, visit<BR>http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python<BR>or, via email, send a message with subject or body 'help' to<BR>twisted-python-request@twistedmatrix.com<BR><BR>You can reach the person managing the list at<BR>twisted-python-owner@twistedmatrix.com<BR><BR>When replying, please edit your Subject line so it is more specific<BR>than "Re: Contents of Twisted-Python digest..."<BR><BR><BR>Today's Topics:<BR><BR>1. Re: twisted-compliant interactive interpreter (Antony Kummel)<BR>2. Query (pooja bector)<BR>3. SSL Example? (markw)<BR>4. Re: Query (Jp Calderone)<BR><BR><BR>----------------------------------------------------------------------<BR><BR>Message: 1<BR>Date: Sun, 14 Aug 2005 05:15:27 -0700 (PDT)<BR>From: Antony
 Kummel <ANTONYKUMMEL@YAHOO.COM><BR>Subject: Re: [Twisted-Python] twisted-compliant interactive<BR>interpreter<BR>To: Twisted general discussion <TWISTED-PYTHON@TWISTEDMATRIX.COM><BR>Message-ID: &lt;20050814121527.92362.qmail@web33908.mail.mud.yahoo.com&gt;<BR>Content-Type: text/plain; charset="iso-8859-1"<BR><BR>Hi,<BR><BR>Here is a version of PyCrust I hooked up that uses<BR>Manhole. I'm trying to figure out if there's a way to<BR>easily mix together some free tools to make Twisted<BR>development on Windows easier. Comments wanted.<BR><BR>Antony Kummel<BR><BR>__________________________________________________<BR>Do You Yahoo!?<BR>Tired of spam? Yahoo! Mail has the best spam protection around <BR>http://mail.yahoo.com <BR>-------------- next part --------------<BR>"""<BR>PyCrust is a python shell and namespace browser application.<BR>tCrust is a version of PyCrust that works with Twisted.<BR>"""<BR><BR># The next two lines, and the other code below that makes use of<BR>#
 ``__main__`` and ``original``, serve the purpose of cleaning up the<BR># main namespace to look as much as possible like the regular Python<BR># shell environment.<BR>import __main__<BR>original = __main__.__dict__.keys()<BR><BR>__original_author__ = "Patrick K. O'Brien <POBRIEN@ORBTECH.COM>"<BR><BR>import wx<BR><BR>class App(wx.App):<BR>"""PyCrust standalone application."""<BR><BR>def OnInit(self):<BR>import wx<BR>from wx import py<BR><BR>wx.InitAllImageHandlers()<BR><BR># !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!<BR># make some adaptations<BR>self.frame = py.crust.CrustFrame(title="Twisted PyCrust!",<BR>InterpClass=self.getInterpClass())<BR>def myOnClose(self, event):<BR>from twisted.internet import reactor<BR>reactor.addSystemEventTrigger('after', 'shutdown', self._OnClose, (None,))<BR>reactor.stop()<BR>self.frame._OnClose = self.frame.OnClose<BR>self.frame.OnClose = myOnClose<BR>#
 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!<BR><BR>self.frame.SetSize((800, 600))<BR>self.frame.Show()<BR>self.SetTopWindow(self.frame)<BR>return True<BR><BR>def getInterpClass(self):<BR>import sys<BR>from wx import py<BR>from twisted.conch.manhole import ManholeInterpreter<BR><BR>class ManholeCrustInterpreter(py.interpreter.Interpreter):<BR>"""A version of the PyCrust interpreter that uses the manhole display hook"""<BR>def __init__(self, locals=None, rawin=None,<BR>stdin=sys.stdin, stdout=sys.stdout, stderr=sys.stderr):<BR>py.interpreter.Interpreter.__init__(self, locals, rawin,<BR>stdin, stdout, stderr)<BR>self.manhole = ManholeInterpreter(self, locals)<BR><BR>def addOutput(self, data, async):<BR>self.write(data)<BR><BR>def runcode(self, *a, **kw):<BR>orighook, sys.displayhook = sys.displayhook, self.manhole.displayhook<BR>try:<BR>py.interpreter.Interpreter.runcode(self, *a, **kw)<BR>finally:<BR>sys.displayhook = orighook<BR><BR>return
 ManholeCrustInterpreter <BR><BR>'''<BR>The main() function needs to handle being imported, such as with the<BR>pycrust script that wxPython installs:<BR><BR>#!/usr/bin/env python<BR><BR>from wx.py.PyCrust import main<BR>main()<BR>'''<BR><BR>def main():<BR>"""The main function for the PyCrust program."""<BR># Cleanup the main namespace, leaving the App class.<BR>import __main__<BR>md = __main__.__dict__<BR>keepers = original<BR>keepers.append('App')<BR>for key in md.keys():<BR>if key not in keepers:<BR>del md[key]<BR># Create an application instance.<BR>app = App(0)<BR># Mimic the contents of the standard Python shell's sys.path.<BR>import sys<BR>if sys.path[0]:<BR>sys.path[0] = ''<BR># Add the application object to the sys module's namespace.<BR># This allows a shell user to do:<BR># &gt;&gt;&gt; import sys<BR># &gt;&gt;&gt; sys.app.whatever<BR>sys.app = app<BR>del sys<BR># Cleanup the main namespace some more.<BR>if md.has_key('App') and md['App'] is App:<BR>del md['App']<BR>if
 md.has_key('__main__') and md['__main__'] is __main__:<BR>del md['__main__']<BR># Start the wxPython event loop.<BR><BR># !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!<BR># this is to integrate Twisted and wxPython<BR>from twisted.internet import threadedselectreactor<BR>threadedselectreactor.install()<BR>from twisted.internet import reactor<BR>import wx<BR>reactor.interleave(wx.CallAfter)<BR># !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!<BR><BR>app.MainLoop()<BR><BR>if __name__ == '__main__':<BR>main()<BR><BR>------------------------------<BR><BR>Message: 2<BR>Date: Sun, 14 Aug 2005 07:11:39 -0700 (PDT)<BR>From: pooja bector <PBECTOR@YAHOO.COM><BR>Subject: [Twisted-Python] Query<BR>To: twisted-python@twistedmatrix.com<BR>Message-ID: &lt;20050814141139.57997.qmail@web34305.mail.mud.yahoo.com&gt;<BR>Content-Type: text/plain; charset="iso-8859-1"<BR><BR>Hi All<BR><BR>I am new to Twisted networks.I read its documentation that it is a network
 over which we can build network applications like chat server.<BR>I have queries regarding , Twisted Word chat server , written in python.<BR>I just know that it is available under free BSD license.<BR>I want to know that is it available as a free download.Can I download the server and a compatible client ? <BR>are the APIs of the server available?<BR>How many simlutaneuos users does it support.<BR>Does it supports group chat and multilanguage chatting.<BR><BR>Thanks <BR><BR>__________________________________________________<BR>Do You Yahoo!?<BR>Tired of spam? Yahoo! Mail has the best spam protection around <BR>http://mail.yahoo.com <BR>-------------- next part --------------<BR>An HTML attachment was scrubbed...<BR>URL: http://twistedmatrix.com/pipermail/twisted-python/attachments/20050814/0a106808/attachment-0001.htm<BR><BR>------------------------------<BR><BR>Message: 3<BR>Date: Sun, 14 Aug 2005 18:11:18 +0100<BR>From: markw <MARK@JUNKLIGHT.COM><BR>Subject: [Twisted-Python] SSL
 Example?<BR>To: Twisted general discussion <TWISTED-PYTHON@TWISTEDMATRIX.COM><BR>Message-ID: <ABD9E704-C92F-4C6A-901E-C00C70F8B61A@JUNKLIGHT.COM><BR>Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed<BR><BR>Hi,<BR><BR>I am contemplating running XML-RPC over SSL (basically for site to <BR>site process communication over the internet). Has anyone got any <BR>example code that would point me in the right direction (or just some <BR>clues :-) )<BR><BR>cheers<BR><BR>mark <BR><BR><BR><BR>------------------------------<BR><BR>Message: 4<BR>Date: Sun, 14 Aug 2005 13:28:44 -0400<BR>From: Jp Calderone <EXARKUN@DIVMOD.COM><BR>Subject: Re: [Twisted-Python] Query<BR>To: Twisted general discussion <TWISTED-PYTHON@TWISTEDMATRIX.COM><BR>Message-ID: &lt;20050814172844.3914.304813179.divmod.quotient.4866@ohm&gt;<BR>Content-Type: text/plain; format=flowed<BR><BR>On Sun, 14 Aug 2005 07:11:39 -0700 (PDT), pooja bector <PBECTOR@YAHOO.COM>wrote:<BR>&gt;Hi All<BR>&gt;<BR>&gt;I am new to
 Twisted networks.I read its documentation that it is a network over which we can build network applications like chat server.<BR>&gt;I have queries regarding , Twisted Word chat server , written in python.<BR>&gt;I just know that it is available under free BSD license.<BR>&gt;I want to know that is it available as a free download.Can I download the server and a compatible client ?<BR>&gt;are the APIs of the server available?<BR>&gt;How many simlutaneuos users does it support.<BR>&gt;Does it supports group chat and multilanguage chatting.<BR><BR>Twisted Words provides a server accessible via IRC and PB. Any IRC client should be able to connect to it. The PB interface allows for easy programmatic access. It does support groups. It uses unicode internally, and transcodes messages received/delivered via IRC. The PB interface is just natively unicode.<BR><BR>It is written in a way intended to make it easy to plug in new access mechanisms. For example, one such plugin that has already
 been written is a Nevow LivePage-based web interface.<BR><BR>Jp<BR><BR><BR><BR>------------------------------<BR><BR>_______________________________________________<BR>Twisted-Python mailing list<BR>Twisted-Python@twistedmatrix.com<BR>http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python<BR><BR><BR>End of Twisted-Python Digest, Vol 17, Issue 12<BR>**********************************************<BR></BLOCKQUOTE><p>
                <hr size=1> <a href="http://us.rd.yahoo.com/evt=34442/*http://www.yahoo.com/r/hs">Start your day with Yahoo! - make it your home page </a>