Registry /
type-stubs / types-aiobotocore-sesv2
Install & Compatibility
Where this runs
tested against v3.7.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.910 runs
installs and imports cleanly · install 0.0s · import 0.000s · 18.6MB
glibcpy 3.10–3.910 runs
installs and imports cleanly · install 1.6s · import 0.000s · 19MB
17MB installed
● package 17MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
SESV2Client
✓ from types_aiobotocore_sesv2 import SESV2Client
✗ from types_aiobotocore_sesv2 import SESV2Client
Creates an SESV2 client with type annotations, making a GetAccount call.
import os
from types_aiobotocore_sesv2 import SESV2Client
session = aiobotocore.session.AioSession()
async def main():
async with session.create_client('sesv2', region_name='us-east-1',
aws_access_key_id=os.environ.get('AWS_ACCESS_KEY_ID', ''),
aws_secret_access_key=os.environ.get('AWS_SECRET_ACCESS_KEY', '')) as client:
# client type is SESV2Client
response = await client.get_account()
print(response['DedicatedIpAutoWarmupEnabled'])
Debug
Known issues
breakingPython 3.8 support removed starting from version 8.12.0 (mypy-boto3-builder). Ensure your runtime is Python 3.9+.fixUpgrade to Python 3.9 or later.
affects: >=8.12.0
breakingTypeDef naming changed in builder 8.9.0: longer names like 'CreateDistributionRequestRequestTypeDef' were shortened to 'CreateDistributionRequestTypeDef'. This may break existing type references.fixUpdate your imports to use the new shorter TypeDef names.
affects: types-aiobotocore-sesv2 packages built with builder >=8.9.0
gotchaThe package only provides type stubs. You must also install aiobotocore at runtime.fixInstall both: pip install aiobotocore types-aiobotocore-sesv2
affects: all
gotchaDo NOT import directly from aiobotocore.client; use the type stubs from this package for proper type checking.fixUse: from types_aiobotocore_sesv2 import SESV2Client
affects: all
Upgrade
Version history
3.7.0latest on PyPI · released May 10, 2026
Audit
Dependencies
aiobotocorerequiredRuntime dependency for AWS SDK calls