Skip to content

Examples#

Index > Textract > Examples

Auto-generated documentation for Textract type annotations stubs module types-aiobotocore-textract.

Client#

Implicit type annotations#

Can be used with types-aiobotocore[textract] package installed.

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

# TextractClient usage example

from aiobotocore.session import get_session


session = get_session()

async with session.create_client("textract") as client:  # (1)
    result = await client.analyze_document()  # (2)
  1. client: TextractClient
  2. result: AnalyzeDocumentResponseTypeDef

Explicit type annotations#

With types-aiobotocore-lite[textract] or a standalone types_aiobotocore_textract package, you have to explicitly specify client: TextractClient 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.

# TextractClient usage example with type annotations

from aiobotocore.session import get_session

from types_aiobotocore_textract.client import TextractClient
from types_aiobotocore_textract.type_defs import AnalyzeDocumentResponseTypeDef
from types_aiobotocore_textract.type_defs import AnalyzeDocumentRequestRequestTypeDef


session = get_session()

async with session.create_client("textract") as client:
    client: TextractClient
    kwargs: AnalyzeDocumentRequestRequestTypeDef = {...}
    result: AnalyzeDocumentResponseTypeDef = await client.analyze_document(**kwargs)