You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
389 B
16 lines
389 B
"""Traditional and simplified Chinese conversion with
|
|
`opencc <https://github.com/BYVoid/OpenCC>`_.
|
|
"""
|
|
|
|
|
|
import opencc
|
|
|
|
_t2s_converter = opencc.OpenCC("t2s.json")
|
|
_s2t_converter = opencc.OpenCC('s2t.json')
|
|
|
|
def tranditional_to_simplified(text: str) -> str:
|
|
return _t2s_converter.convert(text)
|
|
|
|
def simplified_to_traditional(text: str) -> str:
|
|
return _s2t_converter.convert(text)
|