15 lines
549 B
Python
15 lines
549 B
Python
# -*- coding: utf-8 -*-
|
|
from .jamo import (JAMO_LEADS, JAMO_LEADS_MODERN,
|
|
JAMO_VOWELS, JAMO_VOWELS_MODERN,
|
|
JAMO_TAILS, JAMO_TAILS_MODERN,
|
|
is_jamo, is_jamo_modern,
|
|
is_hcj, is_hcj_modern,
|
|
is_hangul_char,
|
|
get_jamo_class,
|
|
jamo_to_hcj, j2hcj,
|
|
hcj_to_jamo, hcj2j,
|
|
jamo_to_hangul, j2h,
|
|
hangul_to_jamo, h2j,
|
|
InvalidJamoError)
|
|
__version__ = '0.4.1'
|