Python IRC bot and encoding issue - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T13:14:27Z http://stackoverflow.com/feeds/question/938870 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/938870/python-irc-bot-and-encoding-issue 2 Python IRC bot and encoding issue Adi 2009-06-02T10:41:48Z 2009-06-02T11:59:04Z <p>Currently I have a simple IRC bot written in python.</p> <p>Since I migrated it to python 3.0 which differentiates between bytes and unicode strings I started having encoding issues. Specifically, with others not sending UTF-8.</p> <p>Now, I could just tell everyone to send UTF-8 (which they should regardless) but an even better solution would be try to get python to default to some other encoding or such.</p> <p>So far the code looks like this:</p> <pre><code>data = str(irc.recv(4096),"UTF-8", "replace") </code></pre> <p>Which at least doesn't throw exceptions. However, I want to go past it: I want my bot to default to another encoding, or try to detect "troublesome characters" somehow.</p> <p>Additionally, I need to figure out what this mysterious encoding that mIRC uses actually is - as other clients appear to work fine and send UTF-8 like they should.</p> <p>How should I go about doing those things?</p> http://stackoverflow.com/questions/938870/python-irc-bot-and-encoding-issue/938880#938880 3 Answer by RichieHindle for Python IRC bot and encoding issue RichieHindle 2009-06-02T10:45:28Z 2009-06-02T10:45:28Z <p><a href="http://chardet.feedparser.org/" rel="nofollow">chardet</a> should help - it's the canonical Python library for detecting unknown encodings.</p> http://stackoverflow.com/questions/938870/python-irc-bot-and-encoding-issue/939125#939125 0 Answer by Adi for Python IRC bot and encoding issue Adi 2009-06-02T11:59:04Z 2009-06-02T11:59:04Z <p>Ok, after some research turns out chardet is having troubles with python 3. The solution as it turns out is simpler than I thought. I chose to fall back on CP1252 if UTF-8 doesn't cut it:</p> <pre><code>data = irc.recv ( 4096 ) try: data = str(data,"UTF-8") except UnicodeDecodeError: data = str(data,"CP1252") </code></pre> <p>Which seems to be working. Though it doesn't detect the encoding, and so if somebody came in with an encoding that is neither UTF-8 nor CP1252 I will again have a problem.</p> <p>This is really just a temporary solution.</p>