A simple Python IRC client library that supports SSL? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T23:46:40Zhttp://stackoverflow.com/feeds/question/651053http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/651053/a-simple-python-irc-client-library-that-supports-ssl2A simple Python IRC client library that supports SSL?flybywire2009-03-16T16:01:01Z2009-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-2Answer by Gomez for A simple Python IRC client library that supports SSL?Gomez2009-03-16T16:06:26Z2009-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#6510868Answer by Ali A for A simple Python IRC client library that supports SSL?Ali A2009-03-16T16:12:07Z2009-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#6511020Answer by vartec for A simple Python IRC client library that supports SSL?vartec2009-03-16T16:15:58Z2009-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>