mypy-boto3-batch

Type hints for AWS Batch boto3 client library in Python

pipmacoslinuxwindows
Try with needOr install directly
Source

About

Type annotations for boto3 Batch 1.42.59 service generated with mypy-boto3-builder 8.12.0

Examples

add type checking to AWS Batch Python code$ python -c "from mypy_boto3_batch import BatchClient; client: BatchClient = None"
enable autocomplete for Batch API calls in IDE$ pip show mypy-boto3-batch
validate AWS Batch script with mypy type checker$ mypy --strict my_batch_script.py
import batch client with full type annotations$ python -c "from mypy_boto3_batch import BatchClient; from boto3.session import Session; client = Session().client('batch'); print(type(client))"
check boto3 batch method signatures during development$ python -c "from mypy_boto3_batch.client import BatchClient; help(BatchClient.submit_job)"