Hi,
I just installed the latest version of cjklib on my Linux machine (Ubuntu 12.04 / Python 2.7.3).
After following the instructions to install, I tried the simple examples, but instead of the expected results, I see this:
>>> from cjklib import characterlookup
>>> cjk = characterlookup.CharacterLookup('C')
>>> cjk.getStrokeOrder(u'说')
[u'\u31d4', u'\u31ca', u'\u31d4', u'\u31d2', u'\u31d1', u'\u31d5', u'\u31d0', u'\u31d3', u'\u31df']
I try to find different forums / stackoverflow and the like to be able to see the symbols directly, but no luck so far.
I am able to do this:
>>> def f (x): print(x)
...
>>> map(f, cjk.getStrokeOrder(u'说'))
㇔
㇊
㇔
㇒
㇑
㇕
㇐
㇓
㇟
[None, None, None, None, None, None, None, None, None]
>>>
But this is not ideal...
Am I missing something to see the right character directly instead of those unicode codes?
Thanks for the help.
Matthieu