mypy-boto3-dynamodb

Type hints for boto3 DynamoDB service in Python code.

pipmacoslinuxwindows
Try with needOr install directly
Source

About

Type annotations for boto3 DynamoDB 1.42.55 service generated with mypy-boto3-builder 8.12.0

Examples

add type checking to dynamodb code$ python -c "from mypy_boto3_dynamodb.client import DynamoDBClient; import mypy"
autocomplete dynamodb methods in IDE$ import boto3 from mypy_boto3_dynamodb import client dynamodb: client.DynamoDBClient = boto3.client('dynamodb')
validate dynamodb table operations with type checking$ mypy your_script.py
check dynamodb query parameters are correct type$ python -m mypy --strict dynamodb_operations.py
get intellisense hints for dynamodb put item$ from mypy_boto3_dynamodb.type_defs import PutItemInputRequestTypeDef