Metadata-Version: 2.4
Name: jcconv
Version: 0.3.0
Summary: JapaneseCharacterCONVerter
Author-email: Matsumoto Taichi <taichino@gmail.com>
Maintainer-email: Björn Esser <besser82@fedoraproject.org>
License: MIT License
Keywords: japanese converter,hiragana,katakana,half-width kana
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3
Description-Content-Type: text/x-rst
License-File: LICENSE.txt
Dynamic: license-file

*************************************
jcconv, Japanese Characters CONVerter
*************************************

interconvert hiragana, katakana, half-width kana

This module also treats 'half/wide number', 'half/wide alphabet'.

Since v0.2.0, the check_hira, check_kata, check_half functions were added.
You can check if a string consists of the characters you specified.

Since 0.3.0, support for Python 2.x was removed, and the configuration
files for setuptools were updated to reflect recents standards.

IMPORTANT: In the current version, this module is tested to work with
           utf-8 encoding, only.

A simple example of usage is as follows:

.. code-block:: python

    >>> from jcconv import *
    >>> print(hira2kata('あいうえお'))   # hiragana to katakana
    アイウエオ
    >>> print(kata2hira('カタカナ'))     # katakana to hiragana
    かたかな
    >>> print(half2hira('ﾊﾝｶｸｶﾀｶﾅ'))      # half-width kana to hiragana
    はんかくかたかな
    >>> print half2wide('hello jcconv')) # half-width alphabet to wide-width
    ｈｅｌｌｏ ｊｃｃｏｎｖ
    >>> print(wide2half('ＷＩＤＥ'))     # wide-width alphabet to half-width
    wide
