Skip to content

Commit

Permalink
Reimplement hanja module
Browse files Browse the repository at this point in the history
  • Loading branch information
hyunwoongko committed Apr 30, 2024
1 parent a183292 commit 7478bc4
Show file tree
Hide file tree
Showing 6 changed files with 27,674 additions and 32 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ include kss/_modules/g2p/assets/rules.txt
include kss/_modules/g2p/assets/idioms.txt
include kss/_modules/g2p/assets/table.csv
include kss/_modules/augmentation/assets/wordnet.json
include kss/_modules/hanja/assets/table.yml
include setup.py
4 changes: 2 additions & 2 deletions kss/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from kss._modules.collocation.collocate import collocate
from kss._modules.g2p.g2p import g2p
from kss._modules.hangulization.hangulization import hangulize
from kss._modules.hanja._hanja import split_hanja, is_hanja, hanja2hangul
from kss._modules.hanja.hanja import split_hanja, is_hanja, hanja2hangul
from kss._modules.jamo._jamo import h2j, h2hcj, j2h, j2hcj, hcj2h, hcj2j, is_jamo, is_jamo_modern, is_hcj, \
is_hcj_modern, is_hangul_char
from kss._modules.josa.josa import select_josa, combine_josa
Expand Down Expand Up @@ -201,4 +201,4 @@ def _find_closest_module(module, min_distance=0.5):


__ALL__ = list(supported_modules.keys()) + ["Kss"]
__version__ = "6.0.2"
__version__ = "6.0.3"
Loading

0 comments on commit 7478bc4

Please sign in to comment.