go-chinese-converter

command module
v1.0.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 23, 2019 License: MIT Imports: 1 Imported by: 0

README

Go Report Card

jcconv

Overview

  • Completely offline
  • Single binary of size 13M
  • Cross platform: Darwin64, Linux64, Win32, Win64
  • Support Docker, image size: 11.1M
  • Fast with multi-threading
  • API server with demo page
  • With variants: compare: jcconv vs google
  • No limit on word count

Docker

# api + web interface
docker run -p 8080:8080 jackytck/jcconv:v1.0.1

# quick play
docker run jackytck/jcconv:v1.0.1 play -i '矩陣力學是量子力學其中一種的表述形式'

Single line

Enter original text in standard input and get back the result in standard output.

jcconv play [flags]
Options
  -c, --convert string   Conversion: one of 'auto' (default), 's2hk', 's2tw', 'hk2s', 'tw2s'. (default "auto")
  -h, --help             help for play
  -i, --input string     Input string.

Single file

Translate a single file and output to the given path.

jcconv file [flags]
Options
  -c, --convert string   Conversion: one of 's2hk' (default), 's2tw', 'hk2s', 'tw2s'. (default "auto")
  -f, --file string      Input file path.
  -h, --help             help for file
  -o, --out string       Output file path.
  -n, --thread int       Number of threads to process, default is number of cores x 4 (default -1)
  -v, --verbose          Display more info

All files

Translate all of the text file(s) under the input directory.

jcconv all [flags]
Options
  -c, --convert string   Conversion: one of 's2hk' (default), 's2tw', 'hk2s', 'tw2s'. (default "auto")
  -h, --help             help for all
  -d, --in string        Input directory path.
  -o, --out string       Output directory path.
  -v, --verbose          Display more info

Detect lang

Detect if a given string is traditional or simplified. It is classified as traditional only if it has 97% confidence.

jcconv detect [flags]
Options
  -h, --help           help for detect
  -i, --input string   Input string.

API server

Start a translation api server, plus a web interface for interacting with it.

jcconv web [flags]
Options
  -d, --domain string   External protocol and domain name, e.g. https://jcconv.nat.com (default "http://127.0.0.1:8080")
  -h, --help            help for web
  -p, --port int        Port of local server. (default 8080)
  -t, --track string    Google analytics tracking code, e.g. UA-XXXXXXXXX-X

API

GET or POST: parameter: text

$ curl -sd 'text=就像收集垃圾和剷雪一樣的事。不得不由誰來做。和喜不喜歡沒有關係。' http://127.0.0.1:8080/translate | jq
{
  "input": "就像收集垃圾和剷雪一樣的事。不得不由誰來做。和喜不喜歡沒有關係。",
  "fromLocale": "zh-HK",
  "toLocale": "zh-CN",
  "chain": "hk2s",
  "output": "就像收集垃圾和铲雪一样的事。不得不由谁来做。和喜不喜欢没有关系。",
  "error": "",
  "elapsed": "665.733µs"
}

Link with translation by using the query parameter text, e.g.

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL