Skip to content

TextractClient#

Index > Textract > TextractClient

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

TextractClient#

Type annotations and code completion for session.create_client("textract") boto3 documentation

TextractClient usage example

from aiobotocore.session import get_session
from types_aiobotocore_textract.client import TextractClient

session = get_session()
async with session.create_client("textract") as client:
    client: TextractClient

Exceptions#

aiobotocore client exceptions are generated in runtime. This class provides code completion for session.create_client("textract").exceptions structure.

TextractClient.exceptions usage example

async with session.create_client("textract") as client:
    try:
        do_something(client)
    except (
            client.AccessDeniedException,
        client.BadDocumentException,
        client.ClientError,
        client.DocumentTooLargeException,
        client.HumanLoopQuotaExceededException,
        client.IdempotentParameterMismatchException,
        client.InternalServerError,
        client.InvalidJobIdException,
        client.InvalidKMSKeyException,
        client.InvalidParameterException,
        client.InvalidS3ObjectException,
        client.LimitExceededException,
        client.ProvisionedThroughputExceededException,
        client.ThrottlingException,
        client.UnsupportedDocumentException,
    ) as e:
        print(e)
TextractClient usage type checking example

from types_aiobotocore_textract.client import Exceptions

def handle_error(exc: Exceptions.AccessDeniedException) -> None:
    ...

Methods#

analyze_document#

Analyzes an input document for relationships between detected items.

Type annotations and code completion for session.create_client("textract").analyze_document method. boto3 documentation

# analyze_document method definition

await def analyze_document(
    self,
    *,
    Document: DocumentTypeDef,  # (1)
    FeatureTypes: Sequence[FeatureTypeType],  # (2)
    HumanLoopConfig: HumanLoopConfigTypeDef = ...,  # (3)
    QueriesConfig: QueriesConfigTypeDef = ...,  # (4)
) -> AnalyzeDocumentResponseTypeDef:  # (5)
    ...
  1. See DocumentTypeDef
  2. See FeatureTypeType
  3. See HumanLoopConfigTypeDef
  4. See QueriesConfigTypeDef
  5. See AnalyzeDocumentResponseTypeDef
# analyze_document method usage example with argument unpacking

kwargs: AnalyzeDocumentRequestRequestTypeDef = {  # (1)
    "Document": ...,
    "FeatureTypes": ...,
}

parent.analyze_document(**kwargs)
  1. See AnalyzeDocumentRequestRequestTypeDef

analyze_expense#

AnalyzeExpense synchronously analyzes an input document for financially related relationships between text.

Type annotations and code completion for session.create_client("textract").analyze_expense method. boto3 documentation

# analyze_expense method definition

await def analyze_expense(
    self,
    *,
    Document: DocumentTypeDef,  # (1)
) -> AnalyzeExpenseResponseTypeDef:  # (2)
    ...
  1. See DocumentTypeDef
  2. See AnalyzeExpenseResponseTypeDef
# analyze_expense method usage example with argument unpacking

kwargs: AnalyzeExpenseRequestRequestTypeDef = {  # (1)
    "Document": ...,
}

parent.analyze_expense(**kwargs)
  1. See AnalyzeExpenseRequestRequestTypeDef

analyze_id#

Analyzes identity documents for relevant information.

Type annotations and code completion for session.create_client("textract").analyze_id method. boto3 documentation

# analyze_id method definition

await def analyze_id(
    self,
    *,
    DocumentPages: Sequence[DocumentTypeDef],  # (1)
) -> AnalyzeIDResponseTypeDef:  # (2)
    ...
  1. See DocumentTypeDef
  2. See AnalyzeIDResponseTypeDef
# analyze_id method usage example with argument unpacking

kwargs: AnalyzeIDRequestRequestTypeDef = {  # (1)
    "DocumentPages": ...,
}

parent.analyze_id(**kwargs)
  1. See AnalyzeIDRequestRequestTypeDef

can_paginate#

Check if an operation can be paginated.

Type annotations and code completion for session.create_client("textract").can_paginate method. boto3 documentation

# can_paginate method definition

def can_paginate(
    self,
    operation_name: str,
) -> bool:
    ...

close#

Closes underlying endpoint connections.

Type annotations and code completion for session.create_client("textract").close method. boto3 documentation

# close method definition

await def close(
    self,
) -> None:
    ...

detect_document_text#

Detects text in the input document.

Type annotations and code completion for session.create_client("textract").detect_document_text method. boto3 documentation

# detect_document_text method definition

await def detect_document_text(
    self,
    *,
    Document: DocumentTypeDef,  # (1)
) -> DetectDocumentTextResponseTypeDef:  # (2)
    ...
  1. See DocumentTypeDef
  2. See DetectDocumentTextResponseTypeDef
# detect_document_text method usage example with argument unpacking

kwargs: DetectDocumentTextRequestRequestTypeDef = {  # (1)
    "Document": ...,
}

parent.detect_document_text(**kwargs)
  1. See DetectDocumentTextRequestRequestTypeDef

generate_presigned_url#

Generate a presigned url given a client, its method, and arguments.

Type annotations and code completion for session.create_client("textract").generate_presigned_url method. boto3 documentation

# generate_presigned_url method definition

await def generate_presigned_url(
    self,
    ClientMethod: str,
    Params: Mapping[str, Any] = ...,
    ExpiresIn: int = 3600,
    HttpMethod: str = ...,
) -> str:
    ...

get_document_analysis#

Gets the results for an Amazon Textract asynchronous operation that analyzes text in a document.

Type annotations and code completion for session.create_client("textract").get_document_analysis method. boto3 documentation

# get_document_analysis method definition

await def get_document_analysis(
    self,
    *,
    JobId: str,
    MaxResults: int = ...,
    NextToken: str = ...,
) -> GetDocumentAnalysisResponseTypeDef:  # (1)
    ...
  1. See GetDocumentAnalysisResponseTypeDef
# get_document_analysis method usage example with argument unpacking

kwargs: GetDocumentAnalysisRequestRequestTypeDef = {  # (1)
    "JobId": ...,
}

parent.get_document_analysis(**kwargs)
  1. See GetDocumentAnalysisRequestRequestTypeDef

get_document_text_detection#

Gets the results for an Amazon Textract asynchronous operation that detects text in a document.

Type annotations and code completion for session.create_client("textract").get_document_text_detection method. boto3 documentation

# get_document_text_detection method definition

await def get_document_text_detection(
    self,
    *,
    JobId: str,
    MaxResults: int = ...,
    NextToken: str = ...,
) -> GetDocumentTextDetectionResponseTypeDef:  # (1)
    ...
  1. See GetDocumentTextDetectionResponseTypeDef
# get_document_text_detection method usage example with argument unpacking

kwargs: GetDocumentTextDetectionRequestRequestTypeDef = {  # (1)
    "JobId": ...,
}

parent.get_document_text_detection(**kwargs)
  1. See GetDocumentTextDetectionRequestRequestTypeDef

get_expense_analysis#

Gets the results for an Amazon Textract asynchronous operation that analyzes invoices and receipts.

Type annotations and code completion for session.create_client("textract").get_expense_analysis method. boto3 documentation

# get_expense_analysis method definition

await def get_expense_analysis(
    self,
    *,
    JobId: str,
    MaxResults: int = ...,
    NextToken: str = ...,
) -> GetExpenseAnalysisResponseTypeDef:  # (1)
    ...
  1. See GetExpenseAnalysisResponseTypeDef
# get_expense_analysis method usage example with argument unpacking

kwargs: GetExpenseAnalysisRequestRequestTypeDef = {  # (1)
    "JobId": ...,
}

parent.get_expense_analysis(**kwargs)
  1. See GetExpenseAnalysisRequestRequestTypeDef

get_lending_analysis#

Gets the results for an Amazon Textract asynchronous operation that analyzes text in a lending document.

Type annotations and code completion for session.create_client("textract").get_lending_analysis method. boto3 documentation

# get_lending_analysis method definition

await def get_lending_analysis(
    self,
    *,
    JobId: str,
    MaxResults: int = ...,
    NextToken: str = ...,
) -> GetLendingAnalysisResponseTypeDef:  # (1)
    ...
  1. See GetLendingAnalysisResponseTypeDef
# get_lending_analysis method usage example with argument unpacking

kwargs: GetLendingAnalysisRequestRequestTypeDef = {  # (1)
    "JobId": ...,
}

parent.get_lending_analysis(**kwargs)
  1. See GetLendingAnalysisRequestRequestTypeDef

get_lending_analysis_summary#

Gets summarized results for the StartLendingAnalysis operation, which analyzes text in a lending document.

Type annotations and code completion for session.create_client("textract").get_lending_analysis_summary method. boto3 documentation

# get_lending_analysis_summary method definition

await def get_lending_analysis_summary(
    self,
    *,
    JobId: str,
) -> GetLendingAnalysisSummaryResponseTypeDef:  # (1)
    ...
  1. See GetLendingAnalysisSummaryResponseTypeDef
# get_lending_analysis_summary method usage example with argument unpacking

kwargs: GetLendingAnalysisSummaryRequestRequestTypeDef = {  # (1)
    "JobId": ...,
}

parent.get_lending_analysis_summary(**kwargs)
  1. See GetLendingAnalysisSummaryRequestRequestTypeDef

start_document_analysis#

Starts the asynchronous analysis of an input document for relationships between detected items such as key-value pairs, tables, and selection elements.

Type annotations and code completion for session.create_client("textract").start_document_analysis method. boto3 documentation

# start_document_analysis method definition

await def start_document_analysis(
    self,
    *,
    DocumentLocation: DocumentLocationTypeDef,  # (1)
    FeatureTypes: Sequence[FeatureTypeType],  # (2)
    ClientRequestToken: str = ...,
    JobTag: str = ...,
    NotificationChannel: NotificationChannelTypeDef = ...,  # (3)
    OutputConfig: OutputConfigTypeDef = ...,  # (4)
    KMSKeyId: str = ...,
    QueriesConfig: QueriesConfigTypeDef = ...,  # (5)
) -> StartDocumentAnalysisResponseTypeDef:  # (6)
    ...
  1. See DocumentLocationTypeDef
  2. See FeatureTypeType
  3. See NotificationChannelTypeDef
  4. See OutputConfigTypeDef
  5. See QueriesConfigTypeDef
  6. See StartDocumentAnalysisResponseTypeDef
# start_document_analysis method usage example with argument unpacking

kwargs: StartDocumentAnalysisRequestRequestTypeDef = {  # (1)
    "DocumentLocation": ...,
    "FeatureTypes": ...,
}

parent.start_document_analysis(**kwargs)
  1. See StartDocumentAnalysisRequestRequestTypeDef

start_document_text_detection#

Starts the asynchronous detection of text in a document.

Type annotations and code completion for session.create_client("textract").start_document_text_detection method. boto3 documentation

# start_document_text_detection method definition

await def start_document_text_detection(
    self,
    *,
    DocumentLocation: DocumentLocationTypeDef,  # (1)
    ClientRequestToken: str = ...,
    JobTag: str = ...,
    NotificationChannel: NotificationChannelTypeDef = ...,  # (2)
    OutputConfig: OutputConfigTypeDef = ...,  # (3)
    KMSKeyId: str = ...,
) -> StartDocumentTextDetectionResponseTypeDef:  # (4)
    ...
  1. See DocumentLocationTypeDef
  2. See NotificationChannelTypeDef
  3. See OutputConfigTypeDef
  4. See StartDocumentTextDetectionResponseTypeDef
# start_document_text_detection method usage example with argument unpacking

kwargs: StartDocumentTextDetectionRequestRequestTypeDef = {  # (1)
    "DocumentLocation": ...,
}

parent.start_document_text_detection(**kwargs)
  1. See StartDocumentTextDetectionRequestRequestTypeDef

start_expense_analysis#

Starts the asynchronous analysis of invoices or receipts for data like contact information, items purchased, and vendor names.

Type annotations and code completion for session.create_client("textract").start_expense_analysis method. boto3 documentation

# start_expense_analysis method definition

await def start_expense_analysis(
    self,
    *,
    DocumentLocation: DocumentLocationTypeDef,  # (1)
    ClientRequestToken: str = ...,
    JobTag: str = ...,
    NotificationChannel: NotificationChannelTypeDef = ...,  # (2)
    OutputConfig: OutputConfigTypeDef = ...,  # (3)
    KMSKeyId: str = ...,
) -> StartExpenseAnalysisResponseTypeDef:  # (4)
    ...
  1. See DocumentLocationTypeDef
  2. See NotificationChannelTypeDef
  3. See OutputConfigTypeDef
  4. See StartExpenseAnalysisResponseTypeDef
# start_expense_analysis method usage example with argument unpacking

kwargs: StartExpenseAnalysisRequestRequestTypeDef = {  # (1)
    "DocumentLocation": ...,
}

parent.start_expense_analysis(**kwargs)
  1. See StartExpenseAnalysisRequestRequestTypeDef

start_lending_analysis#

Starts the classification and analysis of an input document.

Type annotations and code completion for session.create_client("textract").start_lending_analysis method. boto3 documentation

# start_lending_analysis method definition

await def start_lending_analysis(
    self,
    *,
    DocumentLocation: DocumentLocationTypeDef,  # (1)
    ClientRequestToken: str = ...,
    JobTag: str = ...,
    NotificationChannel: NotificationChannelTypeDef = ...,  # (2)
    OutputConfig: OutputConfigTypeDef = ...,  # (3)
    KMSKeyId: str = ...,
) -> StartLendingAnalysisResponseTypeDef:  # (4)
    ...
  1. See DocumentLocationTypeDef
  2. See NotificationChannelTypeDef
  3. See OutputConfigTypeDef
  4. See StartLendingAnalysisResponseTypeDef
# start_lending_analysis method usage example with argument unpacking

kwargs: StartLendingAnalysisRequestRequestTypeDef = {  # (1)
    "DocumentLocation": ...,
}

parent.start_lending_analysis(**kwargs)
  1. See StartLendingAnalysisRequestRequestTypeDef

__aenter__#

Type annotations and code completion for session.create_client("textract").__aenter__ method. boto3 documentation

# __aenter__ method definition

await def __aenter__(
    self,
) -> TextractClient:
    ...

__aexit__#

Type annotations and code completion for session.create_client("textract").__aexit__ method. boto3 documentation

# __aexit__ method definition

await def __aexit__(
    self,
    exc_type: Any,
    exc_val: Any,
    exc_tb: Any,
) -> Any:
    ...