opencc-python-reimplemented (original) (raw)

Project description

開放中文轉換(Pure Python)

Open Chinese convert (OpenCC) in pure Python.

Introduction 簡介

opencc-python 是用純 Python 所寫,使用由 BYVoid(byvoid.kcp@gmail.com) 所開發的 OpenCC 中的字典檔案。

opencc-python 可以支援 Python2.7 及 Python3.x。

opencc-python is made by pure Python with the dictionary files of OpenCC which is developed by BYVoid(byvoid.kcp@gmail.com).

opencc-python can run with Python2.7 and Python3.x.

Installation 安裝

opencc 這個目錄複製到你正在開發的專案中即可,或是執行(需要管理者權限):

python setup.py install

套件也可從 PyPI 安裝,使用指令:

pip install opencc-python-reimplemented

Copy the opencc folder to your project, or run (admin required)

python setup.py install

The package can also be installed from PyPI by issuing:

pip install opencc-python-reimplemented

Usage 使用方式

Code

from opencc import OpenCC

cc = OpenCC('s2t') # convert from Simplified Chinese to Traditional Chinese

can also set conversion by calling set_conversion

cc.set_conversion('s2tw')

to_convert = '开放中文转换'

converted = cc.convert(to_convert)

Command Line

usage: python -m opencc [-h] [-i ] [-o ] [-c ]

                    [--in-enc <encoding>] [--out-enc <encoding>]

optional arguments:

-h, --help show this help message and exit

-i , --input

                    Read original text from <file>. (default: None = STDIN)

-o , --output

                    Write converted text to <file>. (default: None = STDOUT)

-c , --config

                    Conversion (default: None)

--in-enc Encoding for input (default: UTF-8)

--out-enc Encoding for output (default: UTF-8)

example with UTF-8 encoded file:

python -m opencc -c s2t -i my_simplified_input_file.txt -o my_traditional_output_file.txt

See https://docs.python.org/3/library/codecs.html#standard-encodings for list of encodings.

Conversions 轉換

Issues 問題

當轉換有兩個以上的字詞可能時,程式只會使用第一個。

When there is more than one conversion available, only the first one is taken.

Download files

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

Source Distribution

Built Distribution

Filter files by name, interpreter, ABI, and platform.

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

Copy a direct link to the current filters

File details

Details for the file opencc-python-reimplemented-0.1.7.tar.gz.

File metadata

File hashes

Hashes for opencc-python-reimplemented-0.1.7.tar.gz | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 4f777ea3461a25257a7b876112cfa90bb6acabc6dfb843bf4d11266e43579dee | | | MD5 | 81be109d33658ab2455e5a55310877e3 | | | BLAKE2b-256 | 8d6dc6f37eed651dd6b752e50f80a93396cdaa42a6acc6ce05ad7452303ea511 | |

See more details on using hashes here.

File details

Details for the file opencc_python_reimplemented-0.1.7-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for opencc_python_reimplemented-0.1.7-py2.py3-none-any.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 41b3b92943c7bed291f448e9c7fad4b577c8c2eae30fcfe5a74edf8818493aa6 | | | MD5 | 0d0e431912b7ab9805505b76bbe1e1a5 | | | BLAKE2b-256 | 306b055b7806f320cc8f2cdf23c5f70221c0dc1683fca9ffaf76dfc2ad4b91b6 | |

See more details on using hashes here.