mypy-boto3-wisdom

1.42.3 · active · verified Sat Apr 11

mypy-boto3-wisdom provides type annotations for the `boto3` ConnectWisdomService, ensuring static type checking and improved IDE auto-completion for AWS SDK operations. It is currently at version 1.42.3 and is actively maintained with frequent updates tied to `boto3` releases and the `mypy-boto3-builder` project.

Warnings

Install

Imports

Quickstart

This example demonstrates how to import and use the `ConnectWisdomServiceClient` type annotation with a `boto3` session. This enables static type checking and improved auto-completion for Connect Wisdom Service operations.

import boto3
from boto3.session import Session
from mypy_boto3_wisdom import ConnectWisdomServiceClient

def get_wisdom_client() -> ConnectWisdomServiceClient:
    session = Session()
    client: ConnectWisdomServiceClient = session.client("wisdom")
    return client

# Example usage:
wisdom_client = get_wisdom_client()
response = wisdom_client.list_assistants()
print(response)

view raw JSON →