Python unicode issues (2.6)
Posted
by ephemeralis
on Stack Overflow
See other posts from Stack Overflow
or by ephemeralis
Published on 2010-03-30T18:14:33Z
Indexed on
2010/03/30
23:03 UTC
Read the original article
Hit count: 331
I'm currently working on a irc bot for a multi-lingual channel, and I'm encountering some issues with unicode which are proving nearly impossible to solve.
No matter what configuration of unicode encoding I seem to try, the list function which the below code sits within just flat out does nothing (c.notice is a class function which sends a NOTICE command to the irc server) or when it does do something, spits out something which obviously isn't encoded.
The command should be sending ??, but instead it seems hellbent on sending 天å with a previous configuration of the same commands. The one I have specified below is of the 'send nothing' variety. I haven't worked with unicode before this, and thus I am quite stuck. I'm also positive that I'm doing this completely wrong as a consequence.
(compileCMD just takes a list and spits out a single string of all the elements within the list)
uk = self.compileCMD(self.faq.keys(),0)
ukeys = unicode(uk,"utf-8").encode("utf-8")
c.notice(nick, u"Current list of faq entries: %s" % (uk))
© Stack Overflow or respective owner