Skip to main content

Conversion between Traditional and Simplified Chinese

Project description

Open Chinese Convert 開放中文轉換

CMake Bazel MSVC Node.js CI Python CI AppVeyor

npm package badge PyPI version Debian package latest packaged version(s)

Introduction 介紹

OpenCC

Open Chinese Convert (OpenCC, 開放中文轉換) is an open source project for conversions between Traditional Chinese, Simplified Chinese and Japanese Kanji (Shinjitai). It supports character-level and phrase-level conversion, character variant handling, and regional vocabulary variants across Mainland China, Taiwan and Hong Kong. This is not a translation tool between Mandarin and Cantonese, etc.

中文簡繁轉換開源項目,支持詞彙級別的轉換、異體字轉換和地區習慣用詞轉換(中國大陸、台灣、香港)及日本新字體轉換。不提供普通話與粵語之間的轉換。

Discussion (Telegram): https://t.me/open_chinese_convert

Features 特點

  • 嚴格區分「一簡對多繁」和「一簡對多異」。
  • 完全兼容異體字,可以實現動態替換。
  • 嚴格審校一簡對多繁詞條,原則爲「能分則不合」。
  • 支持中國大陸、台灣、香港異體字和地區習慣用詞轉換,如「裏」「裡」、「鼠標」「滑鼠」。
  • 詞庫和函數庫完全分離,可以自由修改、導入、擴展。

詳情參閱OpenCC 設計思想地區詞收錄標準

Installation 安裝

Package Managers 包管理器

  • Debian
  • Ubuntu
  • Fedora
  • Arch Linux
  • macOS (Homebrew)
  • WinGet
    • 使用 winget install opencc 命令可直接安裝 opencc.exe 應用程式,含 Jieba 分詞插件
  • Bazel
  • Node.js
    • 使用 npm install -g opencc 命令可安裝 OpenCC Node.js CLI
    • 使用 npm install -g opencc opencc-jieba 命令可同時安裝 OpenCC Node.js CLI 及 Jieba 分詞插件
  • Python
    • 使用 pip install opencc 命令可安裝 Python API 及 Python CLI
  • More (Repology)

Prebuilt binaries 預編譯二進位檔

Usage 使用

Online 線上轉換

https://opencc.js.org/converter?config=s2t

Node.js

npm install opencc

The npm package supports Node.js >=20.17. It uses bundled Node-API prebuilds when available and falls back to a local node-gyp build when the current platform does not have a matching prebuild.

To install the npm CLI:

npm install -g opencc
opencc -c s2t.json -i input.txt -o output.txt

The npm CLI supports basic text conversion. Plugins, --inspect, and --segmentation require the native OpenCC CLI.

import { OpenCC } from 'opencc';
async function main() {
  const converter: OpenCC = new OpenCC('s2t.json');
  const result: string = await converter.convertPromise('汉字');
  console.log(result);  // 漢字
}

See demo.js and ts-demo.ts.

Python

pip install opencc (Windows, Linux, macOS)

import opencc
converter = opencc.OpenCC('s2t.json')
converter.convert('汉字')  # 漢字

The Python package also installs a basic CLI:

pip install opencc
opencc -c s2t.json -i input.txt -o output.txt

The Python CLI supports basic text conversion, --include-tofu-risk-dictionaries, and --resource-zip. Diagnostic modes such as --inspect and --segmentation still require the native OpenCC CLI.

C++

#include "opencc.h"

int main() {
  const opencc::SimpleConverter converter("s2t.json");
  converter.Convert("汉字");  // 漢字
  return 0;
}

Full example with Bazel

When OpenCC is embedded in a server binary or self-contained application, the JSON config can stay small while dictionary resources are loaded from explicit resource directories:

#include <memory>
#include <vector>

#include "SimpleConverter.hpp"

int main() {
  auto resources = std::make_shared<opencc::FilesystemResourceProvider>(
      std::vector<std::string>{
          "/opt/my-app/opencc",
          "/opt/my-app/plugins/opencc-jieba",
          "/usr/share/opencc",
      });
  const opencc::SimpleConverter converter("s2t.json", resources);
  converter.Convert("汉字");
  return 0;
}

FilesystemResourceProvider searches directories in order. Existing SimpleConverter("s2t.json") and CLI behavior continue to use the config file location, current directory, explicit paths, and installed OpenCC data directory as before.

C

#include "opencc.h"

int main() {
  opencc_t opencc = opencc_open("s2t.json");
  const char* input = "汉字";
  char* converted = opencc_convert_utf8(opencc, input, strlen(input));  // 漢字
  opencc_convert_utf8_free(converted);
  opencc_close(opencc);
  return 0;
}

Full Document 完整文檔

Command Line

Unless otherwise noted, this section describes the native OpenCC CLI built from the C++ toolchain. The Python and npm CLIs support basic file/stdin conversion only, plus --include-tofu-risk-dictionaries; the Python CLI also supports --resource-zip.

  • opencc --help
  • opencc_dict --help

Segmentation and Inspection Modes

OpenCC CLI supports two diagnostic modes that output JSON instead of converted text:

--segmentation — Output segmentation result only (no conversion):

echo "他只看了几行日志,就一叶知秋,猜到整个系统是数据库连接池出了问题" | opencc -c s2twp.json --segmentation
# {"input":"他只看了几行日志,就一叶知秋,猜到整个系统是数据库连接池出了问题","segments":["他","只看","了几行","日志",",就","一叶知秋",",猜到","整个","系统","是","数据库","连接池","出了","问题"]}

--inspect — Output full inspection result (segmentation + per-stage conversion + final output):

echo "他只看了几行日志,就一叶知秋,猜到整个系统是数据库连接池出了问题" | opencc -c s2twp.json --inspect
# {"input":"他只看了几行日志,就一叶知秋,猜到整个系统是数据库连接池出了问题","segments":["他","只看","了几行","日志",",就","一叶知秋",",猜到","整个","系统","是","数据库","连接池","出了","问题"],"stages":[{"index":1,"segments":["他","只看","了幾行","日誌",",就","一葉知秋",",猜到","整個","系統","是","數據庫","連接池","出了","問題"]},{"index":2,"segments":["他","只看","了幾行","日誌",",就","一葉知秋",",猜到","整個","系統","是","資料庫","連線池","出了","問題"]},{"index":3,"segments":["他","只看","了幾行","日誌",",就","一葉知秋",",猜到","整個","系統","是","資料庫","連線池","出了","問題"]}],"output":"他只看了幾行日誌,就一葉知秋,猜到整個系統是資料庫連線池出了問題"}

# Pretty-print with jq:
echo "他只看了几行日志,就一叶知秋,猜到整个系统是数据库连接池出了问题" | opencc -c s2twp.json --inspect | jq .

These modes are useful for diagnosing conversion issues:

  1. Use --segmentation to verify that the input is segmented as expected.
  2. Use --inspect to see which conversion stage produces an unexpected result.

Rules:

  • --segmentation and --inspect are mutually exclusive.

Official / Recommended Ports

The following ports are maintained within the OpenCC ecosystem and are generally up to date with current configuration and dictionary data.

Other Ports (Unofficial)

These ports are community-maintained and may not always track upstream updates.

Configurations 配置文件

預設配置文件

  • s2t.json Simplified Chinese to Traditional Chinese (OpenCC Standard) / 簡體OpenCC 標準繁體
  • t2s.json Traditional Chinese (OpenCC Standard) to Simplified Chinese / OpenCC 標準繁體簡體
  • s2tw.json Simplified Chinese to Traditional Chinese (Taiwan Standard) / 簡體台灣正體
  • tw2s.json Traditional Chinese (Taiwan Standard) to Simplified Chinese / 台灣正體簡體
  • s2hk.json Simplified Chinese to Traditional Chinese (Hong Kong variant) / 簡體香港繁體
  • hk2s.json Traditional Chinese (Hong Kong variant) to Simplified Chinese / 香港繁體簡體
  • s2twp.json Simplified Chinese to Traditional Chinese (Taiwan Standard, with Taiwan Phrases) / 簡體台灣正體(含台灣常用詞彙)
  • tw2sp.json Traditional Chinese (Taiwan Standard) to Simplified Chinese (Mainland China Phrases) / 台灣正體簡體(含中國大陸常用詞彙)
  • t2tw.json Traditional Chinese (OpenCC Standard) to Traditional Chinese (Taiwan Standard) / OpenCC 標準繁體台灣正體
  • tw2t.json Traditional Chinese (Taiwan Standard) to Traditional Chinese (OpenCC Standard) / 台灣正體OpenCC 標準繁體
  • t2hk.json Traditional Chinese (OpenCC Standard) to Traditional Chinese (Hong Kong variant) / OpenCC 標準繁體香港繁體
  • hk2t.json Traditional Chinese (Hong Kong variant) to Traditional Chinese (OpenCC Standard) / 香港繁體OpenCC 標準繁體

下列配置文件仍在開發中,歡迎貢獻新詞組:

  • s2hkp.json Simplified Chinese to Traditional Chinese (Hong Kong variant, with Hong Kong Phrases) / 簡體香港繁體(香港常用詞彙)
  • hk2sp.json Traditional Chinese (Hong Kong variant) to Simplified Chinese (Mainland China Phrases) / 香港繁體簡體(含中國大陸常用詞彙)

下列配置文件僅供探索性研究,不建議用於生產環境:

  • t2jp.json Old Japanese Kanji (Kyūjitai) to New Japanese Kanji (Shinjitai) / 日文舊字體日文新字體
  • jp2t.json New Japanese Kanji (Shinjitai) to Old Japanese Kanji (Kyūjitai) / 日文新字體日文舊字體,並將少量日文詞組轉換爲對應中文

指定配置文件

通过环境变量OPENCC_DATA_DIR加载指定路径下的配置文件

OPENCC_DATA_DIR=/path/to/your/config/dir opencc --help

內聯字典(inline dictionary)

配置檔中的字典可使用 type: "inline",直接在 JSON 裡定義小型自訂詞彙, 不必修改外部字典檔。例如在 group.dicts 最前面加入覆寫規則:

{
  "conversion_chain": [
    {
      "dict": {
        "type": "group",
        "dicts": [
          {
            "type": "inline",
            "entries": {
              "麦旋风": "冰炫風",
              "服务器": "伺服器"
            }
          },
          {
            "type": "ocd2",
            "file": "STPhrases.ocd2"
          },
          {
            "type": "ocd2",
            "file": "STCharacters.ocd2"
          }
        ]
      }
    }
  ]
}

規則與限制:

  • entries 必須是 JSON 物件。
  • entries 的 key/value 必須是非空字串。
  • 重複 key 不受支援;如包含,載入會直接失敗(拋出錯誤)。
  • key/value 會按解析結果原樣使用,不做 trim、大小寫折疊或 Unicode normalization。
  • 內聯字典與普通字典行為一致,優先級由 group.dicts 的順序決定。
  • 內聯字典輸出仍會繼續經過後續 conversion_chain 步驟,不提供鎖定最終輸出。

備註:OpenCC 1.3.2+ 解析器支援有限 JSONC 語法(///* */ 註解與尾逗號)。 若需跨實作相容,建議使用嚴格 JSON,不依賴 JSONC 擴充。

更多完整示例可見 examples/config/。該目錄僅供學習與自訂參考,不屬於官方內建 配置列表。

Experimental Plugins 試驗性插件

OpenCC 現已支援外部 C++ 分詞插件。當前第一個插件為 opencc-jieba, 可通過 s2t_jieba.jsons2tw_jieba.jsons2hk_jieba.jsons2twp_jieba.jsontw2sp_jieba.json 等插件配置啓用。

OpenCC now supports external C++ segmentation plugins. The first plugin is opencc-jieba, which can be enabled through plugin-backed configs such as s2t_jieba.json, s2tw_jieba.json, s2hk_jieba.json, s2twp_jieba.json, and tw2sp_jieba.json.

注意:

  • 該插件機制目前仍為試驗性功能。
  • jieba 插件是可選組件,預設 OpenCC 構建、Python 套件和 Node.js 套件都不要求它。
  • opencc-jieba 額外依賴 cppjieba 及其配套詞典資源,這些依賴僅在構建或分發該插件時需要。
  • 在下一次正式發布版本之前,插件 ABI 仍可能發生變化,不應視為穩定介面。
  • 我們預計從下一次正式發布版本開始,將插件 ABI 視為穩定介面。
  • Windows 下插件必須與宿主 OpenCC 二進位使用 ABI 相容的工具鏈/執行時構建;MSVC 與 MinGW 產物不支援混用。

Notes:

  • The plugin mechanism is currently experimental.
  • The jieba plugin is optional and is not required for the default OpenCC build, Python package, or Node.js package.
  • opencc-jieba additionally depends on cppjieba and its dictionary resources. These dependencies are only needed when building or distributing the plugin itself.
  • The plugin ABI may still change before the next formal OpenCC release and should not yet be treated as stable.
  • We expect to treat the plugin ABI as stable starting with the next formal OpenCC release.
  • On Windows, plugins must be built with an ABI-compatible toolchain/runtime as the host OpenCC binary. Mixing MSVC-built hosts with MinGW-built plugins, or the reverse, is unsupported.

Build 編譯

Build with CMake

Linux & macOS

g++ 4.6+ or clang 3.2+ is required.

make

Windows Visual Studio:

build.cmd

Build with Bazel

bazel build //:opencc

Test 測試

Linux & macOS

make test

Windows Visual Studio:

test.cmd

Test with Bazel

bazel test --test_output=all //src/... //data/... //python/... //test/...

Benchmark 基準測試

make benchmark

詳情見 doc/benchmark.md 檔案。

Projects using OpenCC 使用 OpenCC 的項目

Please update if your project is using OpenCC.

License 許可協議

Apache License 2.0

Third Party Libraries 第三方庫

Change History 版本歷史

Links 相關連結

Contributors 貢獻者

Please feel free to update this list if you have contributed OpenCC.

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

opencc-1.3.2.tar.gz (11.5 MB view details)

Uploaded Source

Built Distributions

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

opencc-1.3.2-cp314-cp314-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.14Windows x86-64

opencc-1.3.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

opencc-1.3.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

opencc-1.3.2-cp314-cp314-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

opencc-1.3.2-cp314-cp314-macosx_10_15_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

opencc-1.3.2-cp313-cp313-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.13Windows x86-64

opencc-1.3.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

opencc-1.3.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

opencc-1.3.2-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

opencc-1.3.2-cp313-cp313-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

opencc-1.3.2-cp312-cp312-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86-64

opencc-1.3.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

opencc-1.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

opencc-1.3.2-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

opencc-1.3.2-cp312-cp312-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

opencc-1.3.2-cp311-cp311-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.11Windows x86-64

opencc-1.3.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

opencc-1.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

opencc-1.3.2-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

opencc-1.3.2-cp311-cp311-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

opencc-1.3.2-cp310-cp310-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.10Windows x86-64

opencc-1.3.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

opencc-1.3.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

opencc-1.3.2-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

opencc-1.3.2-cp310-cp310-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file opencc-1.3.2.tar.gz.

File metadata

  • Download URL: opencc-1.3.2.tar.gz
  • Upload date:
  • Size: 11.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for opencc-1.3.2.tar.gz
Algorithm Hash digest
SHA256 f6e41dfe1bbe2c3c4c3e42e441ff0b24c774681d375241b996ea62fe8f70038c
MD5 9ae758cafc4b556bceb14d007cd4a324
BLAKE2b-256 1ab27cc851aba90dce3bc2197c9c79a12ec1af22774731b80d02333575b3645e

See more details on using hashes here.

File details

Details for the file opencc-1.3.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: opencc-1.3.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for opencc-1.3.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2af35449ccc4658fa2e8b179553aae72108ab86ac5e4d678317adb2524a0128f
MD5 3ee2379399a73efd58920e41dedb1c2d
BLAKE2b-256 482b59f8da2176492428e537844648255c4cbf18b7015588539f3d5208d708ae

See more details on using hashes here.

File details

Details for the file opencc-1.3.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for opencc-1.3.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e9365658b33e939210cff2c6d3d7d46e0730ac84f2beba29cd19c83b00b089aa
MD5 d9224bb863531f60256030e2bce4b054
BLAKE2b-256 28239da96890cb3f653f45d7f07ea9f5bd9af7e96efd5ed8cebbbf2d59f7f5c7

See more details on using hashes here.

File details

Details for the file opencc-1.3.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for opencc-1.3.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9caf449e9881c227b84f8bb67edda428104ce247e8fb2b7bc0f758211cfa980e
MD5 e784c96d5a6180624ead91e6139a8a40
BLAKE2b-256 2644c6ef2b590028e86925d8d9d4a4a22b920308681700f174a07e97e4e0fcb5

See more details on using hashes here.

File details

Details for the file opencc-1.3.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for opencc-1.3.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61840160635c065fbf9695e57b4dc3245915899f2623214b57649c3947108e27
MD5 7490b14b933f67d0a77e27515b1980ed
BLAKE2b-256 9932f411e246bc9d1c6ccb66149c5c396cd7b04c1ee542776d798213efc8e194

See more details on using hashes here.

File details

Details for the file opencc-1.3.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for opencc-1.3.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3de3af6a47c87f4ddeb8b1b3db1de7a6325406a7b6a13796512bc3e51eccdac7
MD5 44942bbab190c03b6ad46dcadf43f468
BLAKE2b-256 5a24a1a0de77fe66aaf13c671fa6cfeb353d3c2116f0214d2450eb68ed5fc8bf

See more details on using hashes here.

File details

Details for the file opencc-1.3.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: opencc-1.3.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for opencc-1.3.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 99258bba81cf2487aa450e6d430fa290501c798558d7389cdb3d2280af387e18
MD5 e7d05c5e77fcc7d31e724e6e560d7430
BLAKE2b-256 dea3eff0592821cef05c079b91d072cdb036ef92621d607d32d5b5c5a1f0a4f0

See more details on using hashes here.

File details

Details for the file opencc-1.3.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for opencc-1.3.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 0aba96ac0d688672e87fe8896e42b1dc0e7cacf0b84e1b407adab1a7ed74833d
MD5 84229f75a64577e7d7e7dd3dc23938fb
BLAKE2b-256 78cf18f7185c0ac2f57a809517dbd858ba9f70f1f7cb48477013f666f1f4822f

See more details on using hashes here.

File details

Details for the file opencc-1.3.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for opencc-1.3.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 0cf82f1af2fa5e5db96afb523ea016d90bb8edeafa34f2ded32b6d794632ff58
MD5 d7819298a576dd5f0e3e431aedcbcd66
BLAKE2b-256 5cb87cad43c64000959c5a8d827266cff47fd15283934af7cffbaca6499cd6ec

See more details on using hashes here.

File details

Details for the file opencc-1.3.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for opencc-1.3.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bcde70b8e0b3968a57c4d21a3787b03eba426301a38ee914b051479224c865cd
MD5 847028a5817da7f810d9cdf5bd2b778c
BLAKE2b-256 c2664e3541e45164f88e3bc10497eb992e478bc22f2bf80719f5a26c2b75c031

See more details on using hashes here.

File details

Details for the file opencc-1.3.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for opencc-1.3.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d817b31a55020958c2fd7ad7b9a6eb11d5eb2c57b983b35000254b3e8504432a
MD5 3cbbc02cbaa6df4fdeae6a0b9c65b25f
BLAKE2b-256 3a990632d3be97c97bf0fe567e10b0361f090888f86799912a59337f32f3afdf

See more details on using hashes here.

File details

Details for the file opencc-1.3.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: opencc-1.3.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for opencc-1.3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 069122e330b84d3b11aa5e35add75f0be0cd5104bad436326f5c84df8a6be959
MD5 004d4acabf9bb05ab2e1e733a45c291f
BLAKE2b-256 b1d5b6cf13383e55079ac97d74c2c825e39f95f29c1dc047e7cdf79fb0feb590

See more details on using hashes here.

File details

Details for the file opencc-1.3.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for opencc-1.3.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 4fd4abe481129f386222215afb26aaf77eb5ffe03bb9906b8a44f11a7457aa7b
MD5 9de9343ea6ee03ee20d4da37733fe213
BLAKE2b-256 f724af35a4c8f96d711b1529da45af0eab9c2a93ce99ad5289161ce0fb05c863

See more details on using hashes here.

File details

Details for the file opencc-1.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for opencc-1.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 0432557734cb8ebfc50a6a36f64cf5a43d2ca698f016af6caf95143d30d2efe2
MD5 677e313220e287e84a85abb0e1b8ef75
BLAKE2b-256 ece0ac9d1e4e1b480aa319f2ee8408e0b8d5f715a46ea404877ba35108c856cf

See more details on using hashes here.

File details

Details for the file opencc-1.3.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for opencc-1.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b454577925dee76eb0e1d9eb3c74403b9158271512e42e73052627405e8c3678
MD5 cb435fcb5bdf80bf3bac07d83887c8fe
BLAKE2b-256 66f00f6c453365c03e3bd3ac920b7a0e236d623a8aeffd89ac7f081c024ab200

See more details on using hashes here.

File details

Details for the file opencc-1.3.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for opencc-1.3.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b87457d1189533aa84ebe5c9e19b568795d7b3c25d325ac487960dcf886eba69
MD5 c4e212d813bb4523c8e84cf1bd19e85b
BLAKE2b-256 26318cb95f1f2ccdedbce95926e434d81344881763e61d89c673746837e2477c

See more details on using hashes here.

File details

Details for the file opencc-1.3.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: opencc-1.3.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for opencc-1.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 12234b9b40b065b06f8351765c7afa29c1ed9f234b98001db03986d6b3db0a3f
MD5 da00df461118abaa4af28447b29261a6
BLAKE2b-256 53975be6551f8d084043842a9e231534194835c06065b055d6435c40d1af7131

See more details on using hashes here.

File details

Details for the file opencc-1.3.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for opencc-1.3.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 cdf881ebd191320464b07b805f160c76184d410aadf09f64613d90aba13f6d4d
MD5 d1f6a62f49f7cb2635ec445bdc741c1f
BLAKE2b-256 90449a19594c06d37ff9b1ae4d9265419db3c4a084d47f035c2b60342f381d74

See more details on using hashes here.

File details

Details for the file opencc-1.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for opencc-1.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 817c2669f4d5a534f69f390a96cf46d69236f502fff02ffc2e8ff2ed03b12e2a
MD5 40a7ccdff5a84de18d582a2492372720
BLAKE2b-256 dc1bb1ef85ced80d05d98c2933456350062618d052ae466885859a4fe604b8f4

See more details on using hashes here.

File details

Details for the file opencc-1.3.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for opencc-1.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00a24ac6c0a4a5a94cfba1d708cbbbd769e463601ef96a9b398777f802d776e1
MD5 6158013ddee5b7eb52a86c267b6d260f
BLAKE2b-256 d0837283c0de98d0668e098daccec4ec8dc06170082fc4b7b4eadcd71eef9365

See more details on using hashes here.

File details

Details for the file opencc-1.3.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for opencc-1.3.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9c97d76632ae3c1599dcf1c1910a4aae75c8c0f1a50146af5fbb6ef26d8e20b6
MD5 4da3722a7faf9e495ba3e7f080dcb916
BLAKE2b-256 098d8f9f47c9b35eccb10f9335aae622171950fd0a7eabfeff4a10d2fafd9af8

See more details on using hashes here.

File details

Details for the file opencc-1.3.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: opencc-1.3.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for opencc-1.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 221b576a02388ab1bca0b44f71db7a59871e2af676623a846b26bfb0ddb87c36
MD5 e6c0eca696ced17b3c591fba8910c09c
BLAKE2b-256 71ba02cf5eed1b200e9b3c3a95ca88583f7ad06c6aba26c51e4634ac59e3e346

See more details on using hashes here.

File details

Details for the file opencc-1.3.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for opencc-1.3.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 8e735f0dfc1347654f82a72e7310201b60b25f50fea3e75d5b3b9b49b6bc9245
MD5 267b04fde1e91b4f44e3892e8718d936
BLAKE2b-256 e9f178957e19e0016bef92117bb4bdfb078678395937a24e79c012e6022580ae

See more details on using hashes here.

File details

Details for the file opencc-1.3.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for opencc-1.3.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 4a443454f2d7ac0587f0dbc2e457e36378b52d2ac270fa9f4246d00fc1227aa6
MD5 9b8b51aace1dc9339987e58e335683bc
BLAKE2b-256 2cf8eeb6635ee3f4695e49ee9b15bf3b7f149dde273fe08acbc3d1088e512f76

See more details on using hashes here.

File details

Details for the file opencc-1.3.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for opencc-1.3.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da1f90c4af63b7ded502eb98cba65d80cac2d687e1f0cecded6e25b80314926a
MD5 67931286ef6911293a296c55fe725c6c
BLAKE2b-256 dccd08bcae31e3ee8ff4f90cbe29829a8c2fba2a0fc4fa10fad6c73e6e506eb7

See more details on using hashes here.

File details

Details for the file opencc-1.3.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for opencc-1.3.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 75c68ead542fb5409a07346b04b99a9c79944931891b41018ddbef0e2807ac60
MD5 ef54e5650a7c3953e4b42c40a4193ef2
BLAKE2b-256 2940414bf4fabb56bb6419e2eec2bfa142be531fe5c740a239147edc088df7aa

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