Metadata-Version: 2.4
Name: jasyllablesep
Version: 0.0.1
Summary: A package for separating Japanese text into syllables
Home-page: https://github.com/jiroshimaya/jasyllablesep
Author: shimajiroxyz
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# jasyllablesep
Japanese text parser to separate Katakana string into syllables.

# Usage

## Install
```
pip install jasyllablesep
```

## Code example

```Python
import jasyllablesep
print(jasyllablesep.parse("シンシュンシャンソンショー"))
```

```
['シン', 'シュン', 'シャン', 'ソン', 'ショー']
```


