a2pcej, "convert Alphabet to Phonetic Code in English and Japanease."
Project description
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.
def conv_al(letters, delimiter='-', sign='(CAPS)', num=False):
return <unicode>
conv_ak(letters, delimiter=’・’, upper_sign=’(大文字)’, num=False)
letters is string.
def conv_ak(letters, delimiter='・', sign='(大文字)', num=False):
return <unicode>
Simple example of usage as below… (on Python3.5)
First of all, import module.
Import module.
>>> from a2pcej import *
Convert ‘examples’ to Ponetic code in English.
>>> conv_al('examples')
'Echo-Xray-Alfa-Mike-Papa-Lima-Echo-Sierra'
Convert ‘examples’ to Ponetic code in Japanese Katakana.
>>> conv_ak('examples')
'イー・エクス・エイ・エム・ピー・エル・イー・エス'
Non alphabet letters are not convert (default).
Upper case lattters has (CAPS) or (大文字) sign (default).
>>> 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.
>>> 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.
>>> conv_al('Examples004', num=True)
'Echo(CAPS)-Xray-Alfa-Mike-Papa-Lima-Echo-Sierra-zero-zero-four'
>>> conv_ak('Examples004', num=True)
'イー(大文字)・エクス・エイ・エム・ピー・エル・イー・エス・ゼロ・ゼロ・ヨン'
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
a2pcej-0.2.3.tar.gz
(4.4 kB
view details)
File details
Details for the file a2pcej-0.2.3.tar.gz
.
File metadata
- Download URL: a2pcej-0.2.3.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 51a65de979e04e4072fa947bd84a65914a76ca47b109083001ed3fd3de4ec846 |
|
MD5 | c3abf3bb4a081f7f2347351bbc1e52bf |
|
BLAKE2b-256 | 8b8a3eb43aa060dcd723559dd6414a91cbca11b9362a72e01251260019d0b84d |