Project: pykakasi

Kana kanji simple inversion library

Project Details

Latest version
2.2.1
Home Page
https://github.com/miurahr/pykakasi
PyPI Page
https://pypi.org/project/pykakasi/

Project Popularity

PageRank
0.0038798822617719738
Number of downloads
829428

======== Pykakasi

Overview

.. image:: https://readthedocs.org/projects/pykakasi/badge/?version=latest :target: https://pykakasi.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status

.. image:: https://badge.fury.io/py/pykakasi.png :target: http://badge.fury.io/py/Pykakasi :alt: PyPI version

.. image:: https://github.com/miurahr/pykakasi/workflows/Run%20Tox%20tests/badge.svg :target: https://github.com/miurahr/pykakasi/actions?query=workflow%3A%22Run+Tox+tests%22 :alt: Run Tox tests

.. image:: https://dev.azure.com/miurahr/github/_apis/build/status/miurahr.pykakasi?branchName=master :target: https://dev.azure.com/miurahr/github/_build?definitionId=13&branchName=master :alt: Azure-Pipelines

.. image:: https://coveralls.io/repos/miurahr/pykakasi/badge.svg?branch=master :target: https://coveralls.io/r/miurahr/pykakasi?branch=master :alt: Coverage status

pykakasi is a Python Natural Language Processing (NLP) library to transliterate hiragana, katakana and kanji (Japanese text) into rōmaji (Latin/Roman alphabet). It can handle characters in NFC form.

Its algorithms are based on the kakasi_ library, which is written in C.

  • Install (from PyPI_): pip install pykakasi
  • Documentation available on readthedocs_

.. _PyPI: https://pypi.org/project/pykakasi/ .. _kakasi: http://kakasi.namazu.org/ .. _Documentation available on readthedocs: https://pykakasi.readthedocs.io/en/latest/index.html

Supported python versions

  • pykakasi supports python 3.6, 3.7, 3.8, 3.9, and pypy3

Usage

Transliterate Japanese text to kana, hiragana and romaji:

.. code-block:: python

import pykakasi
kks = pykakasi.kakasi()
text = "かな漢字"
result = kks.convert(text)
for item in result:
    print("{}: kana '{}', hiragana '{}', romaji: '{}'".format(item['orig'], item['kana'], item['hira'], item['hepburn']))

かな: kana 'カナ', hiragana: 'かな', romaji: 'kana'
漢字: kana 'カンジ', hiragana: 'かんじ', romaji: 'kanji'

Here is an example that output as similar with furigana mode.

.. code-block:: python

import pykakasi
kks = pykakasi.kakasi()
text = "かな漢字交じり文"
result = kks.convert(text)
for item in result:
    print("{}[{}] ".format(item['orig'], item['hepburn'].capitalize()), end='')
print()

かな[Kana] 漢字[Kanji] 交じり[Majiri] 文[Bun]

Benchmark result

You can see benchmark result on various versions and platforms at https://github.com/miurahr/pykakasi/issues/123

Copyright and License

PyKakasi:: Copyright (C) 2010-2021 Hiroshi Miura and contributors(see AUTHORS)

KAKASI Dictionary:: Copyright (C) 2010-2021 Hiroshi Miura and contributors(see AUTHORS)

Copyright (C) 1992 1993 1994 Hironobu Takahashi, Masahiko Sato,
Yukiyoshi Kameyama, Miki Inooka, Akihiko Sasaki, Dai Ando, Junichi Okukawa,
Katsushi Sato and Nobuhiro Yamagishi

UniDic:: Copyright (c) 2011-2021, The UniDic Consortium

All rights reserved.

Unidic is released under any of the GPL2, the LGPL2.1,
or the 3-clause BSD License. (See src/data/unidic/BSD.txt)
PyKakasi relicenses a part of the unidic with GPL3+.

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

================== PyKakasi ChangeLog

All notable changes to this project will be documented in this file.

Unreleased_

Added

Changed

Fixed

Deprecated

Removed

Security

v2.2.1_ (10, July 2021)

Fixed

  • Add Zenkaku-Question(\uFF1F) and other Zenkaku marks as endmark (#146)

v2.2.0_ (22, June 2021)

Added

  • dictionary: add noun and adjectives from UniDic(#140)

Changed

  • Refactoring main loop logics for convert()(#144)

Fixed

  • Fix segmentation (wakati) when combination with Katakana and Hiragana(#142)

v2.1.1_ (16, May 2021)

Added

  • Provide Kakasi.normalize(text) class method
  • Add unidic data into data (not used yet), and add parse utility.

Fixed

  • Put type hint stub into package
  • Copyright notifications

Changed

  • Expand all cletter into dictionary (#139)
  • Change primary kanwadict index from str to int
  • test: gather all legacy test into test_pykakasi_legacy.py file.

v2.1.0_ (6, May 2021)

Added

  • Deprecation warning when using old api(#124)
  • Add type hint file(pyi) (#124)
  • Benchmark test codes(#122)

Changed

  • Cache internal results and improve performance about 30-40 times.(#128)
  • Use standard pickle for database file(#128)
  • Exceptions module is now pykakasi, not pykakasi.exceptions

Removed

  • Dependency for klepto(#128)

v2.0.8_ (4, May 2021)

Added

  • test: Benchmark and profiling (#122)

Changed

  • Performance: avoid ord() when checking long-mark, speed up about 6%
  • Reformat code by black(#121)

v2.0.7_ (26, Feb. 2021)

Fixed

  • Infinite loop after running for a while, handle independent HW VOICED SOUND MARK (#115, #118)

v2.0.6_ (7, Feb. 2021)

Fixed

  • Hiragana for Age countersa(#116,#117)

v2.0.5_ (5, Feb. 2021)

Changed

  • CLI: use argparse for option parse(#113)

Fixed

  • Handle 思った、言った、行った properly.(#114)
  • CI: fix coveralls error

Deprecated

  • CI: drop travis-ci test and badge

v2.0.4_ (26, Nov. 2020)

Fixed

  • CLI: Fix -v and -h option crash on python 3.7 and before (#108).

v2.0.3_ (25, Nov. 2020)

Fixed

  • CLI: Fix -v and -h option crash (#108).

v2.0.2_ (23, Jul. 2020)

Fixed

  • Fix convert() to handle Katakana correctly.(#103)

v2.0.1_ (23, Jul. 2020)

Changed

  • Update setup.py, setup.cfg, tox.ini(#102)

Fixed

  • Fix convert() misses last part of a text (#99, #100)
  • Fix CI, coverage, and coveralls configurations(#101)

v2.0.0_ (31, May. 2020)

.. _Unreleased: https://github.com/miurahr/pykakasi/compare/v2.2.1...HEAD .. _v2.2.1: https://github.com/miurahr/pykakasi/compare/v2.2.0...v2.2.1 .. _v2.2.0: https://github.com/miurahr/pykakasi/compare/v2.1.1...v2.2.0 .. _v2.1.1: https://github.com/miurahr/pykakasi/compare/v2.1.0...v2.1.1 .. _v2.1.0: https://github.com/miurahr/pykakasi/compare/v2.0.8...v2.1.0 .. _v2.0.8: https://github.com/miurahr/pykakasi/compare/v2.0.7...v2.0.8 .. _v2.0.7: https://github.com/miurahr/pykakasi/compare/v2.0.6...v2.0.7 .. _v2.0.6: https://github.com/miurahr/pykakasi/compare/v2.0.5...v2.0.6 .. _v2.0.5: https://github.com/miurahr/pykakasi/compare/v2.0.4...v2.0.5 .. _v2.0.4: https://github.com/miurahr/pykakasi/compare/v2.0.3...v2.0.4 .. _v2.0.3: https://github.com/miurahr/pykakasi/compare/v2.0.2...v2.0.3 .. _v2.0.2: https://github.com/miurahr/pykakasi/compare/v2.0.1...v2.0.2 .. _v2.0.1: https://github.com/miurahr/pykakasi/compare/v2.0.0...v2.0.1 .. _v2.0.0: https://github.com/miurahr/pykakasi/compare/v2.0.0b1...v2.0.0