Skip to content

Examples#

Index > TranscribeService > Examples

Auto-generated documentation for TranscribeService type annotations stubs module types-boto3-transcribe.

Client#

Implicit type annotations#

Can be used with types-boto3[transcribe] package installed.

Write your TranscribeService code as usual, type checking and code completion should work out of the box.

Client method usage example#

# TranscribeServiceClient usage example

from boto3.session import Session


session = Session()

client = session.client("transcribe")  # (1)
result = client.create_call_analytics_category()  # (2)
  1. client: TranscribeServiceClient
  2. result: CreateCallAnalyticsCategoryResponseTypeDef

Explicit type annotations#

With types-boto3-lite[transcribe] or a standalone types_boto3_transcribe package, you have to explicitly specify client: TranscribeServiceClient type annotation.

All other type annotations are optional, as types should be discovered automatically. However, these type annotations can be helpful in your functions and methods.

Client method usage example#

# TranscribeServiceClient usage example with type annotations

from boto3.session import Session

from types_boto3_transcribe.client import TranscribeServiceClient
from types_boto3_transcribe.type_defs import CreateCallAnalyticsCategoryResponseTypeDef
from types_boto3_transcribe.type_defs import CreateCallAnalyticsCategoryRequestTypeDef


session = Session()

client: TranscribeServiceClient = session.client("transcribe")

kwargs: CreateCallAnalyticsCategoryRequestTypeDef = {...}
result: CreateCallAnalyticsCategoryResponseTypeDef = client.create_call_analytics_category(**kwargs)