Skip to content

For automatically converting between Traditional Manchu script (e.g., ᠮᠠᠨᠵᡠ) and Möllendorff Romanized Manchu script (e.g., manju). 用于将传统满文(如:ᠮᠠᠨᠵᡠ)和穆麟德(Möllendorff)转写式满文(如:manju)进行自动转换。

Notifications You must be signed in to change notification settings

hwhw97/Mollendorff-Traditional-Manchu-Conversion

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Möllendorff-Traditional-Manchu-Conversion

用于将传统满文(如:ᠮᠠᠨᠵᡠ)和穆麟德(Möllendorff)转写式满文(如:manju)进行自动转换。

参考:

相关:

使用方法

在线使用 Demo

点击使用在线版 Demo

Demo 更新记录

  • 2025-02-04 | v1.1.0

    优化 t、d 的转写

  • 2025-02-01 | v1.0.0

    初始版本

在 python 中调用

git clone https://github.com/hwhw97/Mollendorff-Traditional-Manchu-Conversion.git
cd Mollendorff-Traditional-Manchu-Conversion
  • 自动识别输入的文本是传统满文还是穆麟德转写式满文,并互相转换
from convert_manscript import convert_manscript

text1 = "ᠮᠠᠨᠵᡠ"
text2 = "manju"

print(convert_manscript(text1))  # output: manju
print(convert_manscript(text2))  # output: ᠮᠠᠨᠵᡠ
  • 如果需要的方向已经确定,也可以不使用自动转换
# 传统满文转穆麟德
from convert_manscript import manscript2mulinde
text1 = "ᠮᠠᠨᠵᡠ"
print(manscript2mulinde(text1)) # output: manju

# 穆麟德转传统满文
from convert_manscript import mulinde2manscript
text2 = "manju"
print(mulinde2manscript(text2)) # output: ᠮᠠᠨᠵᡠ

About

For automatically converting between Traditional Manchu script (e.g., ᠮᠠᠨᠵᡠ) and Möllendorff Romanized Manchu script (e.g., manju). 用于将传统满文(如:ᠮᠠᠨᠵᡠ)和穆麟德(Möllendorff)转写式满文(如:manju)进行自动转换。

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published