Skip to main content

A Python module that uses Google Translate to automatically translate Python help text to any language.

Project description


# helptranslator: help() for everyone.

This is an experimental python package that translates Python's **help()** text
to any language using Google Translate!

Why? Because learning Python shouldn't require fluency in English, and the help() function
is the most language-intensive part of the early programming language learning experience.
Plus, Python 3 fully supports Unicode, so why not?

## Installation

```bash
pip install helptranslator
```

## Example

Calling the **set_help_lang()** function overrides the built-in **help()** function,
so working with helptranslator is essentially a two-liner:

```python
import helptranslator
helptranslator.set_help_lang('german')
```

That's it! Let's change the help text to German and look at the sum() function:

```python
import helptranslator
helptranslator.set_help_lang('german')

help(sum)
>> Hilfe zur eingebauten Funktionssumme in den eingebauten Modulen:

Summe (iterierbar, Start = 0, /)
    Gibt die Summe eines "Start" -Werts (Standard: 0) plus einer Anzahl von Zahlen zurück
    
    Wenn das iterable leer ist, geben Sie den Startwert zurück.
    Diese Funktion ist speziell für die Verwendung mit numerischen Werten und möglicherweise vorgesehen
    lehnen Sie nicht-numerische Typen ab.

```

Or Chinese:

```python
import helptranslator
helptranslator.set_help_lang('chinese (simplified)')

help(sum)
>> Hilfe zur eingebauten Funktionssumme in den eingebauten Modulen:

帮助内置函数总和模块builtins:

sum(iterable,start = 0,/)
    返回“开始”值(默认值:0)加上可迭代的数字的总和
    
    当迭代器为空时,返回起始值。
    此功能专门用于数字值和可能
    拒绝非数字类型。

```

Or Russian:

```python
import helptranslator
helptranslator.set_help_lang('russian')

help(sum)
>> Справка по встроенной функции sum в встроенных модулях:

sum (iterable, start = 0, /)
    Возвращает сумму значения «start» (по умолчанию: 0) плюс итерабельность чисел
    
    Когда итерабельность пуста, верните начальное значение.
    Эта функция предназначена специально для использования с числовыми значениями и может
    отклонять нечисловые типы.
```


## Todos

Well, clearly this is a limited approach. It requires an internet connection, long
texts fail in their connections, and I haven't added IPython support yet. The last
two can be fixed pretty easily (if you are interested in having this, let me know!) but
the first requires a more thoughtful approach. Personally, I'm imagining some kind of
stub file that package developers can create for their packages.

Hopefully, this is useful, and generates some conversation about increasing programming
education around the world!


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

helptranslator-0.0.2.tar.gz (3.9 kB view details)

Uploaded Source

Built Distribution

helptranslator-0.0.2-py3-none-any.whl (6.3 kB view details)

Uploaded Python 3

File details

Details for the file helptranslator-0.0.2.tar.gz.

File metadata

File hashes

Hashes for helptranslator-0.0.2.tar.gz
Algorithm Hash digest
SHA256 c7255f92f952d3db578b08b6ea3b159509fa7c0c76c27045849125c02f1dd8c9
MD5 7cbd296002bec4d0a5467331223773e4
BLAKE2b-256 00b41eb7867c7aceeab97c0bdd79ce6ff3be479e8277403d63306cf1c7a30409

See more details on using hashes here.

File details

Details for the file helptranslator-0.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for helptranslator-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 207c65197c87dd7788823a4652b1fcf3cf9f78ae710b4f00359ecf84d400e95e
MD5 5248f95dcd427fde8b3781d48b301ee8
BLAKE2b-256 5367e5348486187cc8cb9bbb0de01335c57791c29b246fcb8a5dd9b773077ccc

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page