Skip to content

Translate module#

Index > Translate

Auto-generated documentation for Translate type annotations stubs module types-aiobotocore-translate.

How to install#

From PyPI with pip#

Install types-aiobotocore for Translate service.

# install with aiobotocore type annotations
python -m pip install 'types-aiobotocore[translate]'


# Lite version does not provide session.client/resource overloads
# it is more RAM-friendly, but requires explicit type annotations
python -m pip install 'types-aiobotocore-lite[translate]'


# standalone installation
python -m pip install types-aiobotocore-translate

How to uninstall#

python -m pip uninstall -y types-aiobotocore-translate

Usage#

Code samples can be found in Examples.

TranslateClient#

Type annotations and code completion for session.create_client("translate") as TranslateClient boto3 documentation

# TranslateClient usage example

from aiobotocore.session import get_session

from types_aiobotocore_translate.client import TranslateClient


session = get_session()
async with session.create_client("translate") as client:
    client: TranslateClient

Paginators#

Type annotations and code completion for paginators from session.create_client("translate").get_paginator("...").

# ListTerminologiesPaginator usage example

from types_aiobotocore_translate.paginator import ListTerminologiesPaginator

def get_list_terminologies_paginator() -> ListTerminologiesPaginator:
    return client.get_paginator("list_terminologies"))

Literals#

Type annotations for literals used in methods and schema.

# DirectionalityType usage example

from types_aiobotocore_translate.literals import DirectionalityType

def get_value() -> DirectionalityType:
    return "MULTI"

Type definitions#

Type annotations for type definitions used in methods and schema.