All Projects → bosondata → Simplet2s Rs

bosondata / Simplet2s Rs

Licence: mit
A simple traditional Chinese to simplified Chinese converter

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to Simplet2s Rs

eslint-config-mingelz
A shared ESLint configuration with Chinese comments. 一份带有完整中文注释的 ESLint 规则。
Stars: ✭ 15 (+15.38%)
Mutual labels:  chinese-simplified
IntelliJ-IDEA-Translate2Chinese
Chinese ​(Simplified)​ Language Pack EAP v201.15 魔改进行中...
Stars: ✭ 14 (+7.69%)
Mutual labels:  chinese-simplified
Developing Ios 10 Apps With Swift
Stanford 公开课,Developing iOS 10 Apps with Swift 字幕翻译
Stars: ✭ 391 (+2907.69%)
Mutual labels:  chinese-simplified
PHP-Chinese
PHP Chinese Conversion (中文繁簡轉換)
Stars: ✭ 37 (+184.62%)
Mutual labels:  chinese-simplified
common
为现在和将来的同学...
Stars: ✭ 33 (+153.85%)
Mutual labels:  chinese-simplified
docker-compose-file-format
Translation of docker-compose file format, 编排语法译文 v3.8
Stars: ✭ 23 (+76.92%)
Mutual labels:  chinese-simplified
Zhconv
Simple conversion and localization between simplified and traditional Chinese using tables from MediaWiki.
Stars: ✭ 192 (+1376.92%)
Mutual labels:  chinese-simplified
Opentracing Specification Zh
OpenTracing标准(中文版) `zh` (Chinese) translation of the opentracing/specification
Stars: ✭ 717 (+5415.38%)
Mutual labels:  chinese-simplified
PyCasia
A python library to work with the CASIA Chinese handwriting database.
Stars: ✭ 38 (+192.31%)
Mutual labels:  chinese-simplified
Android Jetpack Chinese Translation
Android Jetpack 官方文档 中文翻译
Stars: ✭ 348 (+2576.92%)
Mutual labels:  chinese-simplified
Beancount-Chinese-User-Manual
自用 Beancount 中文用户手册,使用 DeepL 等翻译工具翻译后稍加修饰调整而成。
Stars: ✭ 62 (+376.92%)
Mutual labels:  chinese-simplified
Inno-Setup-Chinese-Simplified-Translation
😷 Inno Setup Chinese Simplified Translation
Stars: ✭ 92 (+607.69%)
Mutual labels:  chinese-simplified
100 Days Of Ml Code
100-Days-Of-ML-Code中文版
Stars: ✭ 16,797 (+129107.69%)
Mutual labels:  chinese-simplified
LxgwNewClearGothic
A Simplified Chinese sans-serif font derived from IPAex Gothic. 一款衍生于「IPAexゴシック」的简体中文黑体字型。
Stars: ✭ 203 (+1461.54%)
Mutual labels:  chinese-simplified
Dynamic Dark Mode
The smart, automatic Dark Mode toggle for macOS Mojave+
Stars: ✭ 397 (+2953.85%)
Mutual labels:  chinese-simplified
ark-pixel-font
Open source Pan-CJK pixel font / 开源的泛中日韩像素字体
Stars: ✭ 1,767 (+13492.31%)
Mutual labels:  chinese-simplified
alfred-chinese-converter
支持 OpenCC 簡繁體中文詞彙級別轉換、異體字轉換以及地區習慣用詞轉換的 Alfred 2 workflow
Stars: ✭ 42 (+223.08%)
Mutual labels:  chinese-simplified
Note By Latex
《简单粗暴 LaTeX》手册开源仓库 | The opensource repo for my published LaTeX book.
Stars: ✭ 916 (+6946.15%)
Mutual labels:  chinese-simplified
Chineseutil
PHP 中文工具包,支持汉字转拼音、拼音分词、简繁互转、数字、金额大写;QQ群:17916227
Stars: ✭ 413 (+3076.92%)
Mutual labels:  chinese-simplified
Dive Into Dl Tensorflow2.0
本项目将《动手学深度学习》(Dive into Deep Learning)原书中的MXNet实现改为TensorFlow 2.0实现,项目已得到李沐老师的认可
Stars: ✭ 3,380 (+25900%)
Mutual labels:  chinese-simplified

simplet2s

Rust Python codecov Crates.io docs.rs PyPI

A simple traditional Chinese to simplified Chinese converter

Installation

Add it to your Cargo.toml:

[dependencies]
simplet2s = "0.2"

Add extern crate simplet2s to your crate root and your're good to go!

Example

extern crate simplet2s;

fn main() {
    let simplified = simplet2s::convert("憂鬱的台灣烏龜");
    println!("{}", simplified);
}

Python package

There is also a Python package named simplet2s, you can install it via pip:

pip install -U simplet2s

Usage example:

import simplet2s

if __name__ == '__main__':
    print(simplet2s.convert("憂鬱的台灣烏龜"))

License

This work is released under the MIT license. A copy of the license is provided in the LICENSE file.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].