I've read Unicode HOWTO several times, and solve similar problems many times, still not understanding how. Anyone can help me on how to properly print this loaded json ?
#!/usr/bin/env python2
# coding: utf8
import json
s = u'["poêle", "mangé"]'
print s
l = json.loads(s)
print l
I've tried every combination of enconding/encode/decode/unicode I could though of... and yet the second print is ugly :
$ python test.py
["poêle", "mangé"]
[u'po\xeale', u'mang\xe9']
Thanks for your help