wanakana

A library to assist in detecting Japanese text


Keywords
japanese, japanese-language, language, python
License
MIT
Install
pip install wanakana==1.0.1

Documentation

WanaKanaPython

A Python library to assist in detecting Japanese text

Usage

Install

pip install wanakana
from wanakana import hiragana
hiragana.is_hiragana("げーむ")

or

from wanakana.hiragana import is_hiragana
is_hiragana("げーむ")

Documentation

See original WanaKana docs as the functions are near identical.

Quick Reference

is_japanese("泣き虫。!〜2¥zenkaku")
// => true

is_kana("あーア")
// => true

is_hiragana("げーむ")
// => true

is_katakana("ゲーム")
// => true

is_kanji("切腹")
// => true

is_romaji("Tōkyō and Ōsaka")
// => true

Credits

A partial port of WanaKana

License

Source files of this project are available under the MIT License. See LICENSE