Metadata-Version: 2.1
Name: japanese2phoneme
Version: 0.0.1
Summary: A python library
Home-page: https://github.com/iory/japanese2phoneme
Author: iory
Author-email: ab.ioryz@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: ginza
Requires-Dist: ja-ginza
Requires-Dist: pybsc (>=0.0.8)
Requires-Dist: spacy

# japanese2phoneme

A python library to convert Japanese to phoneme.

## Install

```
pip install japanese2phoneme
```

## Quick Start

```
>>> import japanese2phoneme
>>> japanese2phoneme.get_chunked_kana('林檎')
(['林檎'], ['リンゴ'], ['r i ɴ g o'])
>>> japanese2phoneme.get_chunked_kana('リンゴ')
(['リンゴ'], ['リンゴ'], ['r i ɴ g o'])
>>> japanese2phoneme.get_chunked_kana('これは牡蠣です')
(['これは牡蠣です'], ['コレハカキデス'], ['k o r e h a k a k i d e s u'])
>>> japanese2phoneme.get_chunked_kana('これは柿です')
(['これは柿です'], ['コレハカキデス'], ['k o r e h a k a k i d e s u'])
```


