Install & Compatibility
Where this runs
tested against v1.43.0 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 18.4MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 1.7s · import 0.000s · 19MB
16MB installed
● package 16MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
ConnectWisdomServiceClient
✓ from mypy_boto3_wisdom import ConnectWisdomServiceClient
✗ from mypy_boto3_wisdom import ConnectWisdomServiceClient
Client
✓ from mypy_boto3_wisdom import Client
ServiceResource
✓ from mypy_boto3_wisdom import ServiceResource
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)
Debug
Known issues
breakingPython 3.8 support was removed with `mypy-boto3-builder` version 8.12.0. Users on Python 3.8 or older must upgrade their Python version to continue receiving updates.fixUpgrade your Python environment to 3.9 or newer.
affects: >=8.12.0 of mypy-boto3-builder (and derived stub packages)
breakingThe `mypy-boto3` ecosystem migrated to PEP 561 compatible packages in `mypy-boto3-builder` version 8.12.0. This fundamentally changes how type checkers discover and use the stubs.fixEnsure your type checker (e.g., mypy) is configured to correctly find PEP 561 stub packages, typically by ensuring the package is installed in the environment where `mypy` runs.
affects: >=8.12.0 of mypy-boto3-builder (and derived stub packages)
breakingStarting with `mypy-boto3-builder` version 8.9.0, certain TypeDef names for packed method arguments were shortened (e.g., `CreateDistributionRequestRequestTypeDef` became `CreateDistributionRequestTypeDef`). This can break existing type annotations if your code explicitly referenced these TypeDefs.fixUpdate your explicit TypeDef references to reflect the shorter naming conventions. Consult the documentation for the specific service's TypeDefs.
affects: >=8.9.0 of mypy-boto3-builder (and derived stub packages)
gotchaPyCharm users may experience slow performance or high CPU usage due to an issue with `Literal` overloads (PyCharm issue PY-40997) when using `boto3-stubs` or `mypy-boto3-*` packages. It is recommended to use `boto3-stubs-lite` (if applicable) or rely on external type checkers like Mypy/Pyright.fixConsider installing `boto3-stubs-lite[wisdom]` instead, or disable PyCharm's internal type checker and use `mypy` or `pyright`.
affects: All versions of mypy-boto3-* packages when used with PyCharm's built-in type checker.
Upgrade
Version history
1.43.0latest on PyPI · released Apr 29, 2026
Audit
Dependencies
boto3requiredProvides type stubs for the boto3 library.
pythonrequiredRequires Python 3.9 or newer.