Metadata-Version: 2.0
Name: a2pcej
Version: 0.2.2a2
Summary: a2pcej, "convert Alphabet to Phonetic Code in English
                    and Japanease."
Home-page: https://github.com/kacchan822/a2pcej
Author: Katsuya SAITO
Author-email: hellow@hellow.skatsuya.com
License: MIT
Keywords: alphabet,katakana,phonetic code
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Customer Service
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: Japanese
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development
Classifier: Topic :: Text Processing
Classifier: Topic :: Utilities

a2pcej
======

**a2pcej**, convert Alphabet to Phonetic Code in English and Japanease.

This module convert each alphabet letters to phonetic code, and also
convert each alphabet letterts to katakana.

Functions
~~~~~~~~~

conv\_al(letters, delimiter='-', upper\_sign='(CAPS)', num=False)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

letters is string.

.. code:: python

    def conv_al(letters, delimiter='-', sign='(CAPS)', num=False):
        return <unicode>

conv\_ak(letters, delimiter='・', upper\_sign='（大文字）', num=False)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

letters is string.

.. code:: python

    def conv_ak(letters, delimiter='・', sign='（大文字）', num=False):
        return <unicode>

Simple example of usage as below... (on Python3.5)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

First of all, import module.

.. code:: python

    Import module.
    >>> from a2pcej import *

Convert 'exsamples' to Ponetic code in English.

.. code:: python

    >>> conv_al('examples')
    'Echo-Xray-Alfa-Mike-Papa-Lima-Echo-Sierra'

Convert 'exsamples' to Ponetic code in Japanese Katakana.

.. code:: python

    >>> conv_ak('examples')
    'イー・エクス・エイ・エム・ピー・エル・イー・エス'

| Non alphabet letters are not convert (default).
| Upper case lattters has (CAPS) or (大文字) sign (default).

.. code:: python

    >>> conv_al('Examples002')
    'Echo(CAPS)-Xray-Alfa-Mike-Papa-Lima-Echo-Sierra-0-0-2'
    >>> conv_ak('Examples002')
    'イー（大文字）・エクス・エイ・エム・ピー・エル・イー・エス・0・0・2'

You can change delimiter and Upper case letters sign.

.. code:: python

    >>> conv_al('Examples003', delimiter=', ', sign='(CAPITAL)')
    'Echo(CAPITAL), Xray, Alfa, Mike, Papa, Lima, Echo, Sierra, 0, 0, 3,'
    >>> conv_ak('Examples003', delimiter='／', sign='(大)')
    'イー(大)／エクス／エイ／エム／ピー／エル／イー／エス／0／0／3'

If you would like to convert numbers to phonetic code, set ``num=True``.

.. code:: python

    >>> conv_al('Examples004', num=True)
    'Echo(CAPS)-Xray-Alfa-Mike-Papa-Lima-Echo-Sierra-zero-zero-four'
    >>> conv_ak('Examples004', num=True)
    'イー（大文字）・エクス・エイ・エム・ピー・エル・イー・エス・ゼロ・ゼロ・ヨン'


