A simple Python IRC client library that supports SSL? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T23:46:40Z http://stackoverflow.com/feeds/question/651053 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/651053/a-simple-python-irc-client-library-that-supports-ssl 2 A simple Python IRC client library that supports SSL? flybywire 2009-03-16T16:01:01Z 2009-03-16T18:34:28Z <p>A simple Python IRC client library that supports SSL?</p> http://stackoverflow.com/questions/651053/a-simple-python-irc-client-library-that-supports-ssl/651075#651075 -2 Answer by Gomez for A simple Python IRC client library that supports SSL? Gomez 2009-03-16T16:06:26Z 2009-03-16T16:06:26Z <p>You searched on <a href="http://pypi.python.org" rel="nofollow">http://pypi.python.org</a> ? There are some, havent checked for SSL.</p> http://stackoverflow.com/questions/651053/a-simple-python-irc-client-library-that-supports-ssl/651086#651086 8 Answer by Ali A for A simple Python IRC client library that supports SSL? Ali A 2009-03-16T16:12:07Z 2009-03-16T18:34:28Z <p><a href="http://twistedmatrix.com/trac/wiki/TwistedWords" rel="nofollow">Twisted</a> has an IRC client (in twisted.words), and it supports SSL.</p> <p>There is an <a href="http://twistedmatrix.com/projects/words/documentation/examples/ircLogBot.py" rel="nofollow">example in the documentation</a>, just remember to do <code>reactor.connectSSL</code> instead of <code>reactor.connectTCP</code>.</p> <p>If you don't want Twisted, there is also the <a href="http://python-irclib.sourceforge.net/" rel="nofollow">Python IRC library</a>, which I notice has SSL support in the latest release.</p> http://stackoverflow.com/questions/651053/a-simple-python-irc-client-library-that-supports-ssl/651102#651102 0 Answer by vartec for A simple Python IRC client library that supports SSL? vartec 2009-03-16T16:15:58Z 2009-03-16T16:15:58Z <p>How simple? Chatzilla supports SSL and as any Mozilla Platform applications, allows using Python. https://developer.mozilla.org/En/Python </p> <p>On second thought, that probably is a total overkill. A second on Ali's answer, Twisted will do.</p>