You can get development information from 
https://github.com/miurahr/unihandecode

If you are interested in this project and try to change source,
you can get latest development tree as follows:

$ git clone https://github.com/miurahr/unihandecode.git

run ./mkdist.sh to make egg files

$ ./mkdist.sh

If you found a bug, please look at

https://github.com/miurahr/unihandecode/issues?state=open

for bug tracking system.

You may also need to install python setuptools to build egg package
from the source.

for unit test,
$ make test

for create egg package
$ make dist

for testing in your virtualenv,

$ mkvirtualenv -p /usr/bin/python2.7 --setuptools 2.7
$ workon 2.7
$ make dist
$ easy_install dist/Unihandecode-0.43-py2.7.egg

trial

$ python
>>> from unihandecode import Unihandecoder
>>> d = Unihandecoder(lang="ja")
>>> d.decode(u"Sakura")
Sakura


enjoy!
