Skip to main content

Conversion between Traditional and Simplified Chinese

Project description

Open Chinese Convert 開放中文轉換

CMake Bazel MSVC Node.js CI Python CI AppVeyor

latest packaged version(s)

Introduction 介紹

OpenCC

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

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

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

Features 特點

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

Installation 安裝

Package Managers 包管理器

Prebuilt 預編譯

Usage 使用

Online 線上轉換

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

Node.js

npm install opencc

The npm package supports Node.js >=20.17 <26. 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('汉字')  # 漢字

C++

#include "opencc.h"

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

Full example with Bazel

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

  • 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.

Other Ports (Unofficial)

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 Taiwanese idiom / 簡體台灣正體 並轉換爲台灣常用詞彙
  • tw2sp.json Traditional Chinese (Taiwan Standard) to Simplified Chinese with Mainland Chinese idiom / 台灣正體簡體 並轉換爲中國大陸常用詞彙
  • 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 標準繁體
  • t2jp.json Traditional Chinese Characters (Kyūjitai) to New Japanese Kanji (Shinjitai) / OpenCC 標準繁體(日文舊字體)日文新字體
  • jp2t.json New Japanese Kanji (Shinjitai) to Traditional Chinese Characters (Kyūjitai) / 日文新字體OpenCC 標準繁體(日文舊字體)

指定配置文件

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

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

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

Example results (from Github CI, commit ID 9e80d5d, 2026-04-16, CMake macos-latest):

-------------------------------------------------------------------------
Benchmark                               Time             CPU   Iterations
-------------------------------------------------------------------------
BM_Initialization/hk2s                868 us          868 us          665
BM_Initialization/hk2t                139 us          139 us         5059
BM_Initialization/jp2t                203 us          203 us         3448
BM_Initialization/s2hk              26201 us        26200 us           27
BM_Initialization/s2t               26385 us        26382 us           27
BM_Initialization/s2tw              27108 us        27108 us           27
BM_Initialization/s2twp             26446 us        26445 us           25
BM_Initialization/s2twp_jieba      142754 us       141974 us            5
BM_Initialization/t2hk               66.7 us         66.7 us        10519
BM_Initialization/t2jp                166 us          166 us         4215
BM_Initialization/t2s                 797 us          797 us          883
BM_Initialization/t2tw               58.1 us         58.1 us        12075
BM_Initialization/tw2s                845 us          845 us          831
BM_Initialization/tw2sp              1004 us         1004 us          697
BM_Initialization/tw2t               93.3 us         93.3 us         7492
BM_ConvertLongText/s2t                327 ms          327 ms            2 bytes_per_second=5.45069M/s
BM_ConvertLongText/s2twp              554 ms          554 ms            1 bytes_per_second=3.21299M/s
BM_ConvertLongText/s2twp_jieba        742 ms          741 ms            1 bytes_per_second=2.40096M/s
BM_Convert/s2t_100                  0.649 ms        0.649 ms         1083 bytes_per_second=6.15628M/s
BM_Convert/s2t_1000                  6.64 ms         6.64 ms          106 bytes_per_second=6.16118M/s
BM_Convert/s2t_10000                 68.1 ms         68.1 ms           10 bytes_per_second=6.14608M/s
BM_Convert/s2t_100000                 718 ms          717 ms            1 bytes_per_second=5.96785M/s
BM_Convert/s2twp_100                 1.20 ms         1.20 ms          552 bytes_per_second=3.32407M/s
BM_Convert/s2twp_1000                12.3 ms         12.3 ms           57 bytes_per_second=3.32311M/s
BM_Convert/s2twp_10000                126 ms          126 ms            6 bytes_per_second=3.31205M/s
BM_Convert/s2twp_100000              1296 ms         1296 ms            1 bytes_per_second=3.3027M/s
BM_Convert/s2twp_jieba_100           1.51 ms         1.49 ms          495 bytes_per_second=2.67698M/s
BM_Convert/s2twp_jieba_1000          15.0 ms         15.0 ms           48 bytes_per_second=2.72292M/s
BM_Convert/s2twp_jieba_10000          153 ms          153 ms            5 bytes_per_second=2.73681M/s
BM_Convert/s2twp_jieba_100000        1728 ms         1728 ms            1 bytes_per_second=2.47784M/s

Projects using OpenCC 使用 OpenCC 的項目

Please update if your project is using OpenCC.

License 許可協議

Apache License 2.0

Third Party Library 第三方庫

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.1.tar.gz (11.8 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.1-cp314-cp314-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86-64

opencc-1.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

opencc-1.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

opencc-1.3.1-cp314-cp314-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

opencc-1.3.1-cp314-cp314-macosx_10_15_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

opencc-1.3.1-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

opencc-1.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

opencc-1.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

opencc-1.3.1-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

opencc-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

opencc-1.3.1-cp312-cp312-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86-64

opencc-1.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

opencc-1.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

opencc-1.3.1-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

opencc-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

opencc-1.3.1-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86-64

opencc-1.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

opencc-1.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

opencc-1.3.1-cp311-cp311-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

opencc-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

opencc-1.3.1-cp310-cp310-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86-64

opencc-1.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

opencc-1.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

opencc-1.3.1-cp310-cp310-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

opencc-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: opencc-1.3.1.tar.gz
  • Upload date:
  • Size: 11.8 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.1.tar.gz
Algorithm Hash digest
SHA256 6892ee3f8fcc5992f0e9f90dbf177c8da566620f83c3f2040257293f16141b33
MD5 d87cda5c15501c198890fb751e79f84c
BLAKE2b-256 d82cf967c613659fbe885f31b95d67aca3c68dd3e79204586e6aee1fa8240806

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencc-1.3.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.1 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 27e55422b46b651701a4d794fb05f3f4e04a4688f11f22117c370911811a204c
MD5 8771de9bcffaaf7028ba2f274f347753
BLAKE2b-256 8e4427f9bbeccf9ba0533d5b109f2cb6f54620523b0d120b6ea143614e872831

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencc-1.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ca227c09f1f785b17bdc7146533d3fe8ade1a6afe9ce3486c7f63197f1bec5dc
MD5 c3d7b2f443cc18300f6692705d2761e0
BLAKE2b-256 45ff31002618451ae4dfc0b1acd2912cdcf779d733920f8cfc519cdf27cd1838

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencc-1.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 a80d20bfe04cfbdfa8b51281a4a1158357fd29fb0f33ecb3e600e4fda3093d9a
MD5 ddb7dbcfa8a0618b24c6f476c0bd93a8
BLAKE2b-256 d4d2cfd2309f0a9e290aaaaaee1d5adc393e14917161d3d9d7fd73181a2e6a0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencc-1.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33a8cd6c80406cb3cc9d1c75abd22a902b6740131fe3596ad5a8b9e9233a6780
MD5 550de0d9a40fcb3c24f50e0fa88b8af3
BLAKE2b-256 18b4ea63c4428c86866ce6b1fefd352389ee86cae16d47f90216de0389aa3287

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencc-1.3.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 54e896ec35e1af6401bf08a22a8703417a21dcf58decea3091bee0224a03d30f
MD5 cce7224329b787d5ae97cc561c283715
BLAKE2b-256 9dbb4846f041712a7c88ab076417a335bc75ee65ba54c2ec5621fc66024faf22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencc-1.3.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.1 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9c7ba9e30b59bc1158caffdb467896ad3311bce18d198faf086993bb2bac6fbf
MD5 a60e9fe4bd899c52326690cc8ed56aca
BLAKE2b-256 577a99ac06e36e09861bc4acaebf083b2de4189ccbb8438c033cd118fc1d8f4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencc-1.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ba1a3f5780070cbb4350697e289a323366d8b43c4441b741523e67c1759b08ac
MD5 a0cf27c2cf67cd7dee3d37cc61aa499b
BLAKE2b-256 158ab9d785e2610bca0f55d0e33ecc57f35403f6a7b9727bf3846593b8ea8a2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencc-1.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 e1470ad743486ed4b22de7f6d67327828e8251202985f0381d642f5835c5ff1b
MD5 21695bb61cbc00720563f9dcd9352ae5
BLAKE2b-256 49ce2f59715e5bd5d878cfa970882109a3585f670d4d17d62c0f4a1da9823abf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencc-1.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70103865e2232d8e20a09ccbe4fcdf3b2d414a274e0ea7628e1bafbc7095e1da
MD5 4efa261ac5f882b616125885b0a14587
BLAKE2b-256 e39886960640556b600ee1dc44d84e431647bf82e5a9f4f91b6bc3fdaf4d0ac5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencc-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2555e509078e15657beeee5ac99b08f519ed5f189cdeafe03cb82ebb4d205e9c
MD5 a27fbfb766c8848e35f5313884b98458
BLAKE2b-256 aa70b3e5d429c14a9679501ce341ebffd42032569be4626690fa644a7e805747

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencc-1.3.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.1 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 aae898734d6f93b01c5c005ea2d15fac1be2dafd81c7a51fd0afca7eac1824d2
MD5 5df206584e775e4570a2b7b9f9a15872
BLAKE2b-256 00d632d0ba00a6fdb5c3021a75b5adf7480ae015ceb6330c7c4644a66ddabafd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencc-1.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 278314fb5283d3ab2bef3c9c055efb864801d1c6f2578db79bd021bebb40f095
MD5 9cbee87db02f8851aec80c3766d3dc7a
BLAKE2b-256 2c2161abb6ad4c00d0bc278a1332aacaf169e40cb420bc21557005786c756d29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencc-1.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 49ffa6d5a0a92ffbd62f86e531d51125649736c131a38b77359ce92f65ec1041
MD5 61bb27989c65e27775c9538b60028629
BLAKE2b-256 c29d31b7ca4250e33a0319d282463335a33e486f51271635bcc80872fba798bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencc-1.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61da7ee02fed5792953d55fd1c003cb9e352027944e01cf0c5ec716fb1da83ca
MD5 ed3675d4db0851e4093bdeb53e631292
BLAKE2b-256 ecf17d8abcaa16bd3d87ca114cba2e2086063862c277e1e3d39cea10b71171c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencc-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 145e699ea379f83e1231d8e55a6be82e58b84c90f52e8b112cd3aadbfd5de771
MD5 170bb529c3e59ece5ffa78a2e5fc508e
BLAKE2b-256 4b825018f0d7b3e72cb4cc5551ecb594528b4355135c743e597161c2ff898cb4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencc-1.3.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.1 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 71662897f7fb24b73c587e5dad8fbdffa7ac0e5792d7195b3f10eac52a3ae2c8
MD5 38b93c6286c5c2a8242a6415d5830b6a
BLAKE2b-256 8932cc52640541d8f184e20bd1723988518e090670c174c728380413e1447139

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencc-1.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 81ab666577bf6f0a2b07e2cbdab31d7d3e8d088d27e8395ad1b3e06eca766e55
MD5 b8e4647ed6115e9c9a3ec3c7c39ab623
BLAKE2b-256 c190b6477fdf949900679377eec04a332059dabbbd625e2eb069bf78c53d223f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencc-1.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 93d819c3030611ee34ef864ca1c8cc7a808ec7f5d17fb2180c486a797e913aae
MD5 f9d903c59a5387301fdf5cfac48a1491
BLAKE2b-256 eb794473fdec13bddde89cfedd83013b3dba7dcd26c70cc1e3dfc8ff8b75057b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencc-1.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40e06253283b9bebc6c1d33e7a9bb9a648994eb15e7228407b674b29a9fcb737
MD5 31852f1cae1ad6f8f0b6630a3fe0ec9a
BLAKE2b-256 c2d19d7facbd92392f03fd8a0b7b04be6050c69505c05eff6f72261ba32f96e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencc-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9380bfb33a2ef17e9e00c08e78e583373636f2bf686dad75d74046a61ccb1700
MD5 2209545f70eab47d8a4b7fdbfaa97430
BLAKE2b-256 452fecbf13f3f00e631d75f92ae412dc4f689b2692252a595aae496af682a489

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencc-1.3.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.1 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 268055c0545d419f5ee071c40cef72773fd87fd2db3f3b147112794ed73e5168
MD5 d196a000cffd45735d1e4da73afe8b62
BLAKE2b-256 0da208b961612812983b6bbeae9de523e4326f09086dc48bc084858f70c643b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencc-1.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 6cf414badb03e7f8a913d332a2c6884bd87bbbd18482da9820cdbd7dacfc14e1
MD5 3ba989c746f8d968dd0cd58b2a813466
BLAKE2b-256 574311138faffa4f6001c7837f509ec7cbd3b751c65de9b30518708ef0783de1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencc-1.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 0239b00a451d5047bee626a5fefecc3b1a58af819244bf6350de74cdd7d2a303
MD5 c1b14faa48995ecbb9efca4f88ed4bb9
BLAKE2b-256 a294e2d6ca41e55a52b4e8f1f0cbf829bd4e05a22afdbcaa5a4e2f2d47f65342

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencc-1.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5dafcae42a53b731a829afd92a0f87e07947234eab409ec8337caea8d7fbb686
MD5 b76904c678689a1718b4af9c726be26f
BLAKE2b-256 ea9081d6d85007b4389d80cb931a77f14f36968f4f8e7747ec2fdae7bccec279

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencc-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e5dd5b504163eebba6aae3a3c39a643b11b7ec2a3447c28d9287793806d2911e
MD5 8300201e78ef6b33fb52c8b9438b6209
BLAKE2b-256 d30fdc26fee231b399094a0a2fa876384fab7da041392831250fdaf85fc01cc4

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