A Python library to convert Japanese texts from Shinjitai to Kyujitai and vice versa
Project description
kyujipy
kyujipy is a Python library to convert Japanese texts from Shinjitai (新字体) to Kyūjitai, (舊字體) and vice versa.
kyujipy is based on the kyujitai.js project, originally authored by Koki Takahashi.
Installation (via Pip)
$ pip install kyujipy
Usage
In Python shell (or inside Python script):
# Import main class
>>> from kyujipy import KyujitaiConverter
# Instantiate Shinjitai <-> Kyujitai converter
>>> converter = KyujitaiConverter()
# Convert a text from Shinjitai to Kyujitai
>>> print(converter.shinjitai_to_kyujitai("新字体"))
新字體
# Convert a text from Kyujitai to Shinjitai
>>> print(converter.kyujitai_to_shinjitai("舊字體"))
旧字体
API Reference
- shinjitai_to_kyujitai(string)
Convert a text from Shinjitai (新字体) to Kyūjitai (舊字體)
- kyujitai_to_shinjitai(string)
Convert a text from Kyūjitai (舊字體) to Shinjitai (新字体)
License
kyujipy is licensed under the MIT license.
© 2017-2023 Emmanuel Ternon
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
kyujipy-0.6.5.tar.gz
(17.7 kB
view hashes)
Built Distribution
kyujipy-0.6.5-py3-none-any.whl
(20.0 kB
view hashes)