Skip to main content

Python 3 Han character library for CJKV languages

Project description

Hanzilib

Hanzilib works with Han characters (Hanzi, Kanji, Hanja, and chu Han) used in Chinese, Japanese, Korean, and Vietnamese (CJKV) languages. It provides a comprehensive set of tools to manage, analyze, and query information about characters based on their visual structure (radicals, glyphs, strokes), pronunciation (readings), and dictionary definitions.

Hanzilib is a modern fork of cjklib, which has been unmaintained since 2012. Cjklib was difficult to install for modern versions of Python; some of its data sources are also no longer available. Hence, this fork was created as an attempt to port the entirety of (or most of) cjklib to modern Python.

Apart from a Python interface, hanzilib provides the hanzi cli tool for convenience (resembling the original cjknife command)

Important ⚠️

  • hanzilib is a work in progress; the interface (both Python and CLI) are not final
    • Names and naming conventions may change in the future
  • hanzilib is not backwards-compatible with cjklib. The API has been modified for clarity and maintainability.
  • Character decomposition is not stable yet; see this page from the cjklib wiki

Data sources in hanzilib/data

Installation

pip install hanzilib

After installing, run hanzi db build to set up the internal database

CLI examples

Get character information:

$ hanzi lookup Information for character 個 (Chinese simplified locale, Unicode domain)
Character type: character
Unicode codepoint: U+500B (20491)
In character domains: Unicode, JISX0208, GlyphInformation, JISX0208_0213, BIG5, BIG5HKSCS, IICore
Radical index: 9 , radical form: ⼈, variants: ⺅
Stroke count: 10

Reading (CantoneseYale): go
Reading (GR): gee, geh
Reading (Hangul): 개:0e
Reading (Jyutping): go3
Reading (MandarinBraille): ⠛⠢⠄, ⠛⠢⠆
Reading (MandarinIPA): kɤ˨˩˦, kɤ˥˩
Reading (Pinyin): gě, gè

Semantic variants: 个, 箇
Simplified variants: 个
Specialised semantic variants: 个, 箇

Glyph 0 (default)
Stroke count: 10
Stroke order: ㇒㇑㇑㇕㇐㇑㇑㇕㇐㇐ (P-S S-HZ H-S S-HZ-H H)
Decomposition:
⿰亻固          
  ⿴囗    古    
   ⿱冂  一⿱十  口
    ⿻丨? ⿻一丨

Get reading from string:

$ hanzi to-reading 凍檸茶 # defaults to Pinyin
dòng níng chá

$ hanzi to-reading 凍檸茶 --target Jyutping
dung3 ning4 caa4

Find characters with KangXi radical index:

$ hanzi find --radical 30 # 30 corresponds to 口
+2: 台叽叶叼召叭叾叵叨只史可叺叱叻叫号叧叹句叴另叮叩古
+3: 各吇吏吓吂吖叿吉同吋吐名吆吀叫吗吁吸吊吃吕吒吔合吅
+4: 呗君吩吶呚含呜呃呈呙呅听吲吠呐呖吼呒吙吝呀吣呌吹 ...
...

Find characters from reading:

$ hanzi find --reading dòng # defaults to Pinyin
㓊㗢㢥㣚㣫㼯䆚䞒侗倲働冻凍动動勭垌姛娻峒崠恫戙挏栋桐棟洞湩烔狪甬硐筒筩絧胨胴腖衕詷迵酮霘駧騆𠄉𢳾𥫎𧡍𧼩𧽿𩐤𩐵𩭩𪔦

$ hanzi find --reading dung3 -s Jyutping
冻凍崠胨腖𰎏

Find characters with components:

$ hanzi find --comp 日月
明﨟嬮腽靨朝胆腌輤醐酭擫檿曨猒晴盟輎瀭醑曌琞胉腖厭潮廟膫壓懨膻奣臈腪黶脂腊腺謿曡酳腹焽輸勗腤膜橗膾輣朚厴嚈擪萌腥懕冐焨胂臆皘擝腸 奛嘲

Filters can be combined!

$ hanzi find --radical 30 --comp 嚈嗋啃哨喐唨唷咀嚨喻喩哊啨喟嘲嗍嘣嗗

Simplified and traditional Chinese: zhscript

$ hanzi zhscript 龍馬精神
Simplified: 龙马精神
Traditional: 龍馬精神

$ hanzi zhscript 飛機
Simplified: 飞[机機]     # two or more variants
Traditional: 飛機

$ hanzi zhscript 龙馬精神
Warning: input string has mixed simplified and traditional forms
Simplified: 龙马精神
Traditional: 龍馬精神

Python examples

Character operations:

>>> from hanzilib.characterlookup import CharacterLookup
>>> cjk = CharacterLookup("C")

# Get stroke order
>>> cjk.getStrokeOrder('說')
['㇔', '㇐', '㇐', '㇐', '㇑', '㇕', '㇐', '㇒', '㇏', '㇑', '㇕', '㇐', '㇓', '㇟']
>>> cjk.getStrokeOrderAbbrev('說')
"D H H H S-HZ-H P N S-HZ-H SP SWG"

# Get characters from components
>>> cjk.getCharactersForComponents([u'门', u'⼉'])
[('阅', 0), ('阋', 0)]

# Many other methods; to be documented

Reading conversions:

>>> from hanzilib.reading import convert
>>> convert('lǎoshī', 'Pinyin', 'MandarinIPA')
lau˨˩.ʂʅ˥˥
  • Options can be passed into conversions:
>>> from hanzilib.reading import convert
>>> from hanzilib.reading.readings import Pinyin, WadeGiles

>>> convert('lǎo shī', Pinyin, WadeGiles)
lao³ shih¹
>>> convert('lǎo shī', Pinyin, WadeGiles(toneMarkType="numbers"))
lao3 shih1
>>> convert('lǎo shī', Pinyin(), WadeGiles)
lao3 shih1
>>> convert('lao3 shi1', "Pinyin", "WadeGiles", sourceOptions={"toneMarkType": "numbers"}, targetOptions={"toneMarkType": "numbers"})
lao3 shih1

The options for the reading classes (Pinyin, WadeGiles, etc.) are fully typed.

More details

Readings

  • Reading operators provide linguistic operations on a specific reading, such as decomposition ('hok6jyut6ping3' -> ['hok6', 'jyut6', 'ping3'])

  • Reading converters can convert from one reading to another

The supported readings of this library are tabulated below.

Mandarin

Mandarin is a spoken language and the most widely used branch of the Chinese linguistic family. It relies on hanzi for its written expression.

Reading Description Example
Pinyin standard romanization of Mandarin; uses Latin symbols to spell out sounds nǐ hǎo
Mandarin IPA phonetic symbols to represent exact sounds in Mandarin ni˨˩˦ xau˨˩˦
Gwoyeu Romatzyh (GR) romanization of Mandarin; uses letters to represent (e.g., ai (1st), air (2nd), ae (3rd), ay (4th)) tones nii hau; Koong fu tzyy
Wade-Giles predecessor of Pinyin; uses numbers, hyphens and apostrophes ni hao / ni3 hao3; K’ung-fu-tzu / Kʻung3-fu1-tzŭ3
Mandarin Braille tactile writing system of Mandarin; maps Pinyin into braille cells ⠝⠊⠂ ⠓⠖⠐

Cantonese

Cantonese is primarily spoken in Hong Kong, Macau, and the Guangdong province of China. It relies on hanzi for its written expression.

Reading Description Example
JyutPing (粵拼) standard romanization of Cantonese; uses Latin letters and numbers to describe sounds ning4 mung4 caa4
Cantonese Yale more intuitive romanization of Cantonese (mainly for English speakers); uses letters and diacritics lihng mùng chà
Cantonese IPA phonetic symbols to represent exact sounds in Mandarin neŋ˨˩ mʊŋ˨˩ tsʰaː˨˩

Supported reading conversions

Mandarin

  • All inter-conversions are supported except from Mandarin IPA (ie all except MandarinIPA -> X)

Cantonese

  • Inter-conversions within Jyutping and Cantonese Yale
  • No conversion support for Cantonese IPA

Technical detail: conversion classes are now unidirectional instead of bidirectional, as per the Single Responsibility Principle

Changes since cjklib

Removed Unihan properties

For details regarding Unihan properties, see Unicode Standard Annex #38

  • kRSKangXi (data from 康熙字典) was removed in version 15.1.0 in favour of kRSUnicode, which is now the standard for getting radicals of Chinese characters (See: UTC Decision 173-C12)

  • kRSKanwa (data from 大漢和辭典), kRSJapanese, kRSKorean were removed in version 13.0.0 (See: Unicode proposal L2/19-209)

  • kHKSCS was removed in version 15.1.0 (See: UTC Decision 174-C10)

Therefore, in hanzilib:

  • the tables CharacterKangxiRadical and CharacterKanwaRadical are combined to CharacterChineseRadical
  • the following tables are removed (temporarily? maybe another data source can be found?)
    • CharacterJapaneseRadical
    • CharacterKoreanRadical
    • HKSCSSet

Missing dictionaries

Finding new data sources for:

Also, the legacy EDICT is used instead of EDICT2, this will be changed shortly

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hanzilib-0.0.10.tar.gz (10.2 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

hanzilib-0.0.10-py3-none-any.whl (10.7 MB view details)

Uploaded Python 3

File details

Details for the file hanzilib-0.0.10.tar.gz.

File metadata

  • Download URL: hanzilib-0.0.10.tar.gz
  • Upload date:
  • Size: 10.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.4

File hashes

Hashes for hanzilib-0.0.10.tar.gz
Algorithm Hash digest
SHA256 be43ca84e95953a8b428a3fe4c09065d90529725b8e906f4cc62c7f5f3c112af
MD5 43e2529631c079a6a7b60818a27e4189
BLAKE2b-256 a2b91359fc60811691905beea073ceac660222c6d7a82f5eee8e868bd2e35a1f

See more details on using hashes here.

File details

Details for the file hanzilib-0.0.10-py3-none-any.whl.

File metadata

  • Download URL: hanzilib-0.0.10-py3-none-any.whl
  • Upload date:
  • Size: 10.7 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.4

File hashes

Hashes for hanzilib-0.0.10-py3-none-any.whl
Algorithm Hash digest
SHA256 5f4e4de84f1ae8d82c48737e1cbaa7d4a9c73a48267b4c98ae927edc80907003
MD5 2459bc1c55cbff812784335634508086
BLAKE2b-256 449795e7d149a76748ae1894fa9e1b4b92ef8e8aa401283edbcfb6907124597a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page