English | 日本語版はこちら
A tool to run DeepL translations on your command line.
It's written in Rust, and uses curl to connect to the DeepL API.
To use, you need to get the DeepL API key from https://www.deepl.com/en/pro-api/.
dptran
is available on crates.io.
- Install
rustup
orcargo
to your computer. - run this:
$ cargo install dptran
dptran
includes the binary crate's dependent crates (such as clap
, serde_json
and confy
) by the default features.
To install only the library crate, please disable the default features by adding --no-default-features
argument.
$ cargo add dptran --no-default-features
Or, add this to your Cargo.toml:
[dependencies]
dptran = { version = "2.1.0", default-features = false }
The binary crate provides a command-line tool to translate text using the DeepL API.
- Translate text from the command line arguments.
- Translate text interactively.
- Translate multiple lines.
- Translate text from the pipeline.
- Translate text from a file. (v2.1.0-)
- Translate text from an editor. (v2.1.0-)
- Remove line breaks from the source text. (v2.1.0-)
- Output to a text file. (v2.1.0-)
- Check the number of characters remaining to be translated.
- Check valid language codes.
- Cache the translation results. (v2.1.0-)
If you omit the destination language option, the translation will be done in English (EN) by default.
For more information about language codes, see the language list getting from DeepL API:
$ dptran list -s # for the list of source languages
$ dptran list -t # for the list of target languages
Please be sure to get your DeepL API key and set it up on dptran before using the service.
The API key is available for free (up to 500,000 characters per month).
https://www.deepl.com/en/pro-api/
$ dptran set --api-key [API key]
If any language is not specified, the source language is automatically detected and the destination language is set to English (EN) by default.
It is possible to specify the source language with the -f
option and the destination language with the -t
option.
$ dptran Bonjour
Hello
$ dptran -t FR Hello
Bonjour
$ dptran
> ありがとうございます。
Thank you very much.
> Ich stehe jeden Tag um 7 Uhr auf.
I get up at 7 a.m. every day.
> La reunión comienza a las 10 a.m.
The meeting begins at 10 a.m.
> 今天玩儿得真开心!
Had a great time today!
> quit
Multiple source texts can be translated interactively.
Exit with quit
.
If you want to translate the source texts into a specific language, use the -t
option.
To enter multiple lines, use the -m option.
Then enter a blank line to send the input.
$ dptran -m -t JA
> A tool to run DeepL translations on your command line.
..It's written in Rust, and uses curl to connect to the DeepL API.
..To use, you need to get the DeepL API key from https://www.deepl.com/en/pro-api/.
..
コマンドラインでDeepL翻訳を実行するためのツールです。
これはRustで書かれており、DeepL APIへの接続にはcurlを使用します。
使用するには、https://www.deepl.com/en/pro-api/ から DeepL API キーを取得する必要があります。
You can translate the output of other commands with dptran.
e.g. Translate the content of the man page into Japanese.
$ man ls | cat | dptran -t JA
You can translate the contents of a text file with dptran by using the -i
option.
$ dptran -i file.txt
You can translate the contents from an editor with dptran by using the -e
option.
$ dptran set -e vi
$ dptran -e
$ dptran set -e vim
$ dptran -e
$ dptran set -e nano
$ dptran -e
$ dptran set -e "emacs -nw"
$ dptran -e
You can remove line breaks from the source text with the -r
option.
$ dptran -t FR -e -r
For example, the following input (in the editor):
Hello!
How are you?
will be translated as one line like this:
Bonjour, comment allez-vous ?
You can output the translation result to a text file with the -o
option.
$ dptran -t JA Hello -o output.txt
For more information about commands, see help:
$ dptran -h
$ dptran -u
usage: 222 / 500000 (0%)
remaining: 499778
You can see the number of remaining characters that can be translated by DeepL API in the current month.
The free DeepL API plan lets you translate up to 500,000 characters per month.
It is set to English (EN-US) by default.
You can change it with set --target-lang
.
For example, to change it to Japanese (JA), do the following:
$ dptran set --target-lang JA
You can reset all settings.
Note: The API key will be reset as well. If you wish to use dptran again, please set the API key again.
$ dptran set --clear
$ cargo uninstall dptran
See the documentation for the library crate here.