Metadata-Version: 1.1
Name: hypua2jamo
Version: 0.3
Summary: Convert Hanyang-PUA code to unicode Hangul Jamo, i.e., Syllable-Initial-Peak-Final Encoding (첫가끝 코드).
Home-page: https://github.com/mete0r/hypua2jamo
Author: mete0r
Author-email: mete0r@sarangbang.or.kr
License: GNU Lesser GPL v3+
Description: hypua2jamo
        ==========
        
        Convert `Hanyang-PUA code <http://ko.wikipedia.org/wiki/%ED%95%9C%EC%96%91_%EC%82%AC%EC%9A%A9%EC%9E%90_%EC%A0%95%EC%9D%98_%EC%98%81%EC%97%AD_%EC%BD%94%EB%93%9C>`_ (U+E0BC~U+F8F7) to unicode Hangul Jamo (U+1100~U+11FF), i.e. `Syllable-Initial-Peak-Final Encoding (첫가끝 코드) <http://ko.wikipedia.org/wiki/%EC%98%9B%ED%95%9C%EA%B8%80#.EC.B2.AB.EA.B0.80.EB.81.9D_.EC.BD.94.EB.93.9C>`_.
        
        Example
        -------
        
           >>> from hypua2jamo import translate
           >>> pua = u'\ub098\ub78f\u302e\ub9d0\u302f\uebd4\ubbf8\u302e'
           >>> translate(pua)
           u'\ub098\ub78f\u302e\ub9d0\u302f\u110a\u119e\ubbf8\u302e'
           >>> print _
           나랏말ᄊ미
           >>> translate(pua, composed=False)
           u'\ub098\ub78f\u302e\ub9d0\u302f\u1109\u1109\u119e\ubbf8\u302e'
           >>> print _
           나랏말ㅅㅅ미
        
        Installation
        ------------
        
        from `pypi <http://pypi.python.org/pypi/hypua2jamo>`_::
        
           pip install hypua2jamo
        
        from `github <https://github.com/mete0r/hypua2jamo>`_::
        
           git clone git://github.com/mete0r/hypua2jamo.git
           cd hypua2jamo
           python bootstrap.py
           bin/buildout
           python data2py.py
        
        Requirements
        ------------
        
        - Python 2
        
        Documentation & Development
        ---------------------------
        
        - Documentation: `http://hypua2jamo.readthedocs.org <http://hypua2jamo.readthedocs.org>`_
        - GitHub: `https://github.com/mete0r/hypua2jamo <https://github.com/mete0r/hypua2jamo>`_
        - Issue tracker: `https://github.com/mete0r/hypua2jamo/issues <https://github.com/mete0r/hypua2jamo/issues>`_
        - Bug reports, feedbacks and contributions are welcome!
        
        Contributors
        ------------
        
        Maintainer: `@mete0r_kr <https://twitter.com/#!/mete0r_kr>`_
        
        License
        -------
        
        .. image:: http://www.gnu.org/graphics/lgplv3-147x51.png
        
        `GNU Lesser General Public License Version 3 <http://www.gnu.org/licenses/lgpl.html>`_
        `(text version) <http://www.gnu.org/licenses/lgpl-3.0.txt>`_
        
        Disclosure
        ----------
        
        This work is based on `KTUG <http://www.ktug.or.kr>`_
        `Hanyang PUA Table Project <http://faq.ktug.or.kr/faq/HanyangPuaTableProject>`_.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Natural Language :: Korean
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: Jython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Text Processing :: Filters
