Metadata-Version: 2.1
Name: polyglot-translator
Version: 2.0.6
Summary: Automation CLI tool that, using the DeepL API, generates a JSON or a PO file from a given source file.
Home-page: https://github.com/riccardoFasan/polyglot
Author: Riccardo Fasan
Author-email: fasanriccardo21@gmail.com
License: MIT
Project-URL: BugTracker, https://github.com/riccardoFasan/polyglot/issues
Project-URL: Homepage, https://github.com/riccardoFasan/polyglot
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Polyglot - Automate translations with DeepL

Polyglot is a CLI tool that automates translation tasks and can be easily integrated into your python softwares.
Using the [**DeepL API**](https://www.deepl.com/it/docs-api/), Polyglot generates a translated file from a given source file.

## Supported files

Polyglot is born to translate **JSON** and **PO** files, but now it supports other files. This is the complete list:

- json

- po

- docx (Microsoft **Word**)

- pptx (Microsoft **PowerPoint**)

- html

- htm

- raw text files like .txt or .dat

## Installation

Install [Python](https://www.python.org/) if you haven't already done so, then use **pip** to install Polyglot.

```shell
pip install polyglot-translator
```

Then you can run Polyglot by running:

```shell
python -m polyglot
```

And that's all.

Soon the whole script will be packaged for other package managers like pacman, apt and brew.

### Optional: add Polyglot to PATH

I suggest you to update your PATH in order to call the command faster.

```shell
export PATH=$PATH:$HOME/.local/bin
```

> ⚠️This command can be different depending on your OS.

Now you can run Polyglot simply with:

```shell
polyglot
```

## Usage

There are four available commands: translate, set_license, print_usage_data and print_supported_languages.

### Translate

"Translate" is the main feature of Polyglot. It reads the passed file and creates one or more new files with the translations. It creates a new file with the translations and doesn't edit the source file.

> ℹ️ In the case of a PO file, it returns both a PO and an MO file.

#### Command options

| Option                 | Required | Description                                                                                                                                        |
| :--------------------- | :------- | :------------------------------------------------------------------------------------------------------------------------------------------------- |
| -p, --source_file      | yes      | The file to be translated.                                                                                                                         |
| -t, --target_lang      | yes      | the code of the language into which you want to translate the source file                                                                          |
| -o, --output_directory | no       | The directory where the output file will be located. **Will be used the working directory if this option is invalid or not used**.                 |
| -s, --source_lang      | no       | Source file language code. Detected automatically by DeepL by default. Specifying it can increase performance and make translations more accurate. |

#### Basic usage

E.g.: we have a .json source in English and we want to translate it in Italian.

```shell
polyglot translate -p en.json -t IT
```

#### Advanced usage

E.g.: we have a .po source in English and we want a .po file translated into Japanese with the corresponding .mo file in our home. We specify the source language to benefit DeepL.

```shell
polyglot translate -p en.po -t JA -o $HOME -s EN
```

### Set DeepL API key

**DeepL provides you with a key that allows you to use its API**. So, Polyglot requires this key to work and will ask you for it on your first use. You can use the following command to set or change the key manually.

```shell
polyglot set_license
```

### Print usage info

It returns DeepL usage info related to your API key, run with:

```shell
polyglot print_usage_info
```

### Print supported languages

It returns the list of languages currently supported by DeepL, run with:

```shell
polyglot print_supported_languages
```

## Dependencies

- [Colorama](https://github.com/tartley/colorama)

- [Progressbar 2](https://github.com/WoLpH/python-progressbar)

- [Polib](https://github.com/izimobil/polib/)


