非ASCII文字(utf-8)を含むキー「動詞」文字列の下に辞書があります。その辞書をクライアントに送信したい (私は Tornado i Python 2.7.2 と simplejson を使用しています)。私はのようにしようとしています
result = {"verb" : "Želeći"}
self.write(simplejson.dumps(result, ensure_ascii=False)) # tried also with utf-8 encoding parameter passed
self.flush()
しかし、常にエラーが発生しますutf8 codec can't decode byte 0x8e in position 0
simplejson で utf 文字を含むクライアント辞書に送信する方法は?