Skip to main content

Mypy-friendly boto3 type annotations master module.

Project description

mypy_boto3

PyPI - Handsdown PyPI - Python Version Docs

Mypy-friendly type annotations for boto3.

Installation

# install only `mypy_boto3.s3` for S3 service annotations
pip install mypy-boto3[s3]

# or install multiple services
pip install mypy-boto3[s3,ec2]

# or install S3 service with docs
pip install mypy-boto3[s3-with-docs]

# or install all services
pip install mypy-boto3[all]

# or even install all boto3 services annotations
# WARNING: this will eat ~70 MB of space
pip install mypy-boto3[all-with-docs]

Usage

  • Install mypy and optionally enable it in your IDE
  • Install boto3
  • Use mypy-boto3 to annotate your code to discover errors
import boto3

from mypy_boto3.s3 import Client, ServiceResource

client: Client = boto3.client("s3")

# IDE autocomplete suggests function name and arguments here
client.create_bucket(Bucket="bucket")

# (mypy) error: Missing positional argument "Key" in call to "get_object" of "Client"
client.get_object(Bucket="bucket")

# (mypy) error: Argument "Key" to "get_object" of "Client" has incompatible type "None"; expected "str"
client.get_object(Bucket="bucket", Key=None)

# explicitly set type to S3 ServiceResource
resource: ServiceResource = boto3.Session(region_name="us-west-1").resource("s3")

# IDE autocomplete suggests function name and arguments here
bucket = resource.Bucket("bucket")

# (mypy) error: Unexpected keyword argument "key" for "upload_file" of "Bucket"
bucket.upload_file(Filename="my.txt", key="my-txt")

How it works

There is also a package mypy-boto3-builder that builds interface files from boto3 documentation.

Differences from boto3-type-annotations

  • Fully type annotated
  • mypy compatibility
  • Generated types for return values and arguments
  • Added ServiceResource sub-collections
  • Support service-specific sub-modules
  • Modules documentation
  • Type annotations for return structures (in progress)

What's next

  • Add TypedDict types for arguments and return types to check keys and values
  • Allow installation of sub-modules
  • Always include docs and support them in generated documentation

Thank you

  • Guys behind boto3-type-annotations, this package is based on top of their work
  • black developers for awesome formatting tool
  • mypy for doing all dirty work for us

Submodules

Examples

You can install any submodules using pip

# pip install mypy-boto3[<submodule_name>, ...]

# install ec2, s3 and sqs type annotations
pip install mypy-boto3[s3, ec2, sqs]

# install ec2, s3, rds, lambda, sqs and cloudformation type annotations
# with included documentation
pip install mypy-boto3[essential-with-docs]

# install type annotations for all boto3 services
pip install mypy-boto3[all]

List of all submodules

  • all - Type annotations for all boto3 services.
  • all-with-docs - Type annotations for all boto3 services with included documentation.
  • essential - Type annotations for ec2, s3, rds, lambda, sqs and cloudformation boto3 services.
  • essential-with-docs - Type annotations for ec2, s3, rds, lambda, sqs and cloudformation boto3 services with included documentation.
  • acm - Type annotations for boto3 acm service.
  • acm-with-docs - Type annotations for boto3 acm service with included documentation.
  • acm-pca - Type annotations for boto3 acm-pca service.
  • acm-pca-with-docs - Type annotations for boto3 acm-pca service with included documentation.
  • alexaforbusiness - Type annotations for boto3 alexaforbusiness service.
  • alexaforbusiness-with-docs - Type annotations for boto3 alexaforbusiness service with included documentation.
  • amplify - Type annotations for boto3 amplify service.
  • amplify-with-docs - Type annotations for boto3 amplify service with included documentation.
  • apigateway - Type annotations for boto3 apigateway service.
  • apigateway-with-docs - Type annotations for boto3 apigateway service with included documentation.
  • apigatewaymanagementapi - Type annotations for boto3 apigatewaymanagementapi service.
  • apigatewaymanagementapi-with-docs - Type annotations for boto3 apigatewaymanagementapi service with included documentation.
  • apigatewayv2 - Type annotations for boto3 apigatewayv2 service.
  • apigatewayv2-with-docs - Type annotations for boto3 apigatewayv2 service with included documentation.
  • application-autoscaling - Type annotations for boto3 application-autoscaling service.
  • application-autoscaling-with-docs - Type annotations for boto3 application-autoscaling service with included documentation.
  • application-insights - Type annotations for boto3 application-insights service.
  • application-insights-with-docs - Type annotations for boto3 application-insights service with included documentation.
  • appmesh - Type annotations for boto3 appmesh service.
  • appmesh-with-docs - Type annotations for boto3 appmesh service with included documentation.
  • appstream - Type annotations for boto3 appstream service.
  • appstream-with-docs - Type annotations for boto3 appstream service with included documentation.
  • appsync - Type annotations for boto3 appsync service.
  • appsync-with-docs - Type annotations for boto3 appsync service with included documentation.
  • athena - Type annotations for boto3 athena service.
  • athena-with-docs - Type annotations for boto3 athena service with included documentation.
  • autoscaling - Type annotations for boto3 autoscaling service.
  • autoscaling-with-docs - Type annotations for boto3 autoscaling service with included documentation.
  • autoscaling-plans - Type annotations for boto3 autoscaling-plans service.
  • autoscaling-plans-with-docs - Type annotations for boto3 autoscaling-plans service with included documentation.
  • backup - Type annotations for boto3 backup service.
  • backup-with-docs - Type annotations for boto3 backup service with included documentation.
  • batch - Type annotations for boto3 batch service.
  • batch-with-docs - Type annotations for boto3 batch service with included documentation.
  • budgets - Type annotations for boto3 budgets service.
  • budgets-with-docs - Type annotations for boto3 budgets service with included documentation.
  • ce - Type annotations for boto3 ce service.
  • ce-with-docs - Type annotations for boto3 ce service with included documentation.
  • chime - Type annotations for boto3 chime service.
  • chime-with-docs - Type annotations for boto3 chime service with included documentation.
  • cloud9 - Type annotations for boto3 cloud9 service.
  • cloud9-with-docs - Type annotations for boto3 cloud9 service with included documentation.
  • clouddirectory - Type annotations for boto3 clouddirectory service.
  • clouddirectory-with-docs - Type annotations for boto3 clouddirectory service with included documentation.
  • cloudformation - Type annotations for boto3 cloudformation service.
  • cloudformation-with-docs - Type annotations for boto3 cloudformation service with included documentation.
  • cloudfront - Type annotations for boto3 cloudfront service.
  • cloudfront-with-docs - Type annotations for boto3 cloudfront service with included documentation.
  • cloudhsm - Type annotations for boto3 cloudhsm service.
  • cloudhsm-with-docs - Type annotations for boto3 cloudhsm service with included documentation.
  • cloudhsmv2 - Type annotations for boto3 cloudhsmv2 service.
  • cloudhsmv2-with-docs - Type annotations for boto3 cloudhsmv2 service with included documentation.
  • cloudsearch - Type annotations for boto3 cloudsearch service.
  • cloudsearch-with-docs - Type annotations for boto3 cloudsearch service with included documentation.
  • cloudsearchdomain - Type annotations for boto3 cloudsearchdomain service.
  • cloudsearchdomain-with-docs - Type annotations for boto3 cloudsearchdomain service with included documentation.
  • cloudtrail - Type annotations for boto3 cloudtrail service.
  • cloudtrail-with-docs - Type annotations for boto3 cloudtrail service with included documentation.
  • cloudwatch - Type annotations for boto3 cloudwatch service.
  • cloudwatch-with-docs - Type annotations for boto3 cloudwatch service with included documentation.
  • codebuild - Type annotations for boto3 codebuild service.
  • codebuild-with-docs - Type annotations for boto3 codebuild service with included documentation.
  • codecommit - Type annotations for boto3 codecommit service.
  • codecommit-with-docs - Type annotations for boto3 codecommit service with included documentation.
  • codedeploy - Type annotations for boto3 codedeploy service.
  • codedeploy-with-docs - Type annotations for boto3 codedeploy service with included documentation.
  • codepipeline - Type annotations for boto3 codepipeline service.
  • codepipeline-with-docs - Type annotations for boto3 codepipeline service with included documentation.
  • codestar - Type annotations for boto3 codestar service.
  • codestar-with-docs - Type annotations for boto3 codestar service with included documentation.
  • codestar-notifications - Type annotations for boto3 codestar-notifications service.
  • codestar-notifications-with-docs - Type annotations for boto3 codestar-notifications service with included documentation.
  • cognito-identity - Type annotations for boto3 cognito-identity service.
  • cognito-identity-with-docs - Type annotations for boto3 cognito-identity service with included documentation.
  • cognito-idp - Type annotations for boto3 cognito-idp service.
  • cognito-idp-with-docs - Type annotations for boto3 cognito-idp service with included documentation.
  • cognito-sync - Type annotations for boto3 cognito-sync service.
  • cognito-sync-with-docs - Type annotations for boto3 cognito-sync service with included documentation.
  • comprehend - Type annotations for boto3 comprehend service.
  • comprehend-with-docs - Type annotations for boto3 comprehend service with included documentation.
  • comprehendmedical - Type annotations for boto3 comprehendmedical service.
  • comprehendmedical-with-docs - Type annotations for boto3 comprehendmedical service with included documentation.
  • config - Type annotations for boto3 config service.
  • config-with-docs - Type annotations for boto3 config service with included documentation.
  • connect - Type annotations for boto3 connect service.
  • connect-with-docs - Type annotations for boto3 connect service with included documentation.
  • cur - Type annotations for boto3 cur service.
  • cur-with-docs - Type annotations for boto3 cur service with included documentation.
  • datapipeline - Type annotations for boto3 datapipeline service.
  • datapipeline-with-docs - Type annotations for boto3 datapipeline service with included documentation.
  • datasync - Type annotations for boto3 datasync service.
  • datasync-with-docs - Type annotations for boto3 datasync service with included documentation.
  • dax - Type annotations for boto3 dax service.
  • dax-with-docs - Type annotations for boto3 dax service with included documentation.
  • devicefarm - Type annotations for boto3 devicefarm service.
  • devicefarm-with-docs - Type annotations for boto3 devicefarm service with included documentation.
  • directconnect - Type annotations for boto3 directconnect service.
  • directconnect-with-docs - Type annotations for boto3 directconnect service with included documentation.
  • discovery - Type annotations for boto3 discovery service.
  • discovery-with-docs - Type annotations for boto3 discovery service with included documentation.
  • dlm - Type annotations for boto3 dlm service.
  • dlm-with-docs - Type annotations for boto3 dlm service with included documentation.
  • dms - Type annotations for boto3 dms service.
  • dms-with-docs - Type annotations for boto3 dms service with included documentation.
  • docdb - Type annotations for boto3 docdb service.
  • docdb-with-docs - Type annotations for boto3 docdb service with included documentation.
  • ds - Type annotations for boto3 ds service.
  • ds-with-docs - Type annotations for boto3 ds service with included documentation.
  • dynamodb - Type annotations for boto3 dynamodb service.
  • dynamodb-with-docs - Type annotations for boto3 dynamodb service with included documentation.
  • dynamodbstreams - Type annotations for boto3 dynamodbstreams service.
  • dynamodbstreams-with-docs - Type annotations for boto3 dynamodbstreams service with included documentation.
  • ec2 - Type annotations for boto3 ec2 service.
  • ec2-with-docs - Type annotations for boto3 ec2 service with included documentation.
  • ec2-instance-connect - Type annotations for boto3 ec2-instance-connect service.
  • ec2-instance-connect-with-docs - Type annotations for boto3 ec2-instance-connect service with included documentation.
  • ecr - Type annotations for boto3 ecr service.
  • ecr-with-docs - Type annotations for boto3 ecr service with included documentation.
  • ecs - Type annotations for boto3 ecs service.
  • ecs-with-docs - Type annotations for boto3 ecs service with included documentation.
  • efs - Type annotations for boto3 efs service.
  • efs-with-docs - Type annotations for boto3 efs service with included documentation.
  • eks - Type annotations for boto3 eks service.
  • eks-with-docs - Type annotations for boto3 eks service with included documentation.
  • elasticache - Type annotations for boto3 elasticache service.
  • elasticache-with-docs - Type annotations for boto3 elasticache service with included documentation.
  • elasticbeanstalk - Type annotations for boto3 elasticbeanstalk service.
  • elasticbeanstalk-with-docs - Type annotations for boto3 elasticbeanstalk service with included documentation.
  • elastictranscoder - Type annotations for boto3 elastictranscoder service.
  • elastictranscoder-with-docs - Type annotations for boto3 elastictranscoder service with included documentation.
  • elb - Type annotations for boto3 elb service.
  • elb-with-docs - Type annotations for boto3 elb service with included documentation.
  • elbv2 - Type annotations for boto3 elbv2 service.
  • elbv2-with-docs - Type annotations for boto3 elbv2 service with included documentation.
  • emr - Type annotations for boto3 emr service.
  • emr-with-docs - Type annotations for boto3 emr service with included documentation.
  • es - Type annotations for boto3 es service.
  • es-with-docs - Type annotations for boto3 es service with included documentation.
  • events - Type annotations for boto3 events service.
  • events-with-docs - Type annotations for boto3 events service with included documentation.
  • firehose - Type annotations for boto3 firehose service.
  • firehose-with-docs - Type annotations for boto3 firehose service with included documentation.
  • fms - Type annotations for boto3 fms service.
  • fms-with-docs - Type annotations for boto3 fms service with included documentation.
  • forecast - Type annotations for boto3 forecast service.
  • forecast-with-docs - Type annotations for boto3 forecast service with included documentation.
  • forecastquery - Type annotations for boto3 forecastquery service.
  • forecastquery-with-docs - Type annotations for boto3 forecastquery service with included documentation.
  • fsx - Type annotations for boto3 fsx service.
  • fsx-with-docs - Type annotations for boto3 fsx service with included documentation.
  • gamelift - Type annotations for boto3 gamelift service.
  • gamelift-with-docs - Type annotations for boto3 gamelift service with included documentation.
  • glacier - Type annotations for boto3 glacier service.
  • glacier-with-docs - Type annotations for boto3 glacier service with included documentation.
  • globalaccelerator - Type annotations for boto3 globalaccelerator service.
  • globalaccelerator-with-docs - Type annotations for boto3 globalaccelerator service with included documentation.
  • glue - Type annotations for boto3 glue service.
  • glue-with-docs - Type annotations for boto3 glue service with included documentation.
  • greengrass - Type annotations for boto3 greengrass service.
  • greengrass-with-docs - Type annotations for boto3 greengrass service with included documentation.
  • groundstation - Type annotations for boto3 groundstation service.
  • groundstation-with-docs - Type annotations for boto3 groundstation service with included documentation.
  • guardduty - Type annotations for boto3 guardduty service.
  • guardduty-with-docs - Type annotations for boto3 guardduty service with included documentation.
  • health - Type annotations for boto3 health service.
  • health-with-docs - Type annotations for boto3 health service with included documentation.
  • iam - Type annotations for boto3 iam service.
  • iam-with-docs - Type annotations for boto3 iam service with included documentation.
  • importexport - Type annotations for boto3 importexport service.
  • importexport-with-docs - Type annotations for boto3 importexport service with included documentation.
  • inspector - Type annotations for boto3 inspector service.
  • inspector-with-docs - Type annotations for boto3 inspector service with included documentation.
  • iot - Type annotations for boto3 iot service.
  • iot-with-docs - Type annotations for boto3 iot service with included documentation.
  • iot-data - Type annotations for boto3 iot-data service.
  • iot-data-with-docs - Type annotations for boto3 iot-data service with included documentation.
  • iot-jobs-data - Type annotations for boto3 iot-jobs-data service.
  • iot-jobs-data-with-docs - Type annotations for boto3 iot-jobs-data service with included documentation.
  • iot1click-devices - Type annotations for boto3 iot1click-devices service.
  • iot1click-devices-with-docs - Type annotations for boto3 iot1click-devices service with included documentation.
  • iot1click-projects - Type annotations for boto3 iot1click-projects service.
  • iot1click-projects-with-docs - Type annotations for boto3 iot1click-projects service with included documentation.
  • iotanalytics - Type annotations for boto3 iotanalytics service.
  • iotanalytics-with-docs - Type annotations for boto3 iotanalytics service with included documentation.
  • iotevents - Type annotations for boto3 iotevents service.
  • iotevents-with-docs - Type annotations for boto3 iotevents service with included documentation.
  • iotevents-data - Type annotations for boto3 iotevents-data service.
  • iotevents-data-with-docs - Type annotations for boto3 iotevents-data service with included documentation.
  • iotthingsgraph - Type annotations for boto3 iotthingsgraph service.
  • iotthingsgraph-with-docs - Type annotations for boto3 iotthingsgraph service with included documentation.
  • kafka - Type annotations for boto3 kafka service.
  • kafka-with-docs - Type annotations for boto3 kafka service with included documentation.
  • kinesis - Type annotations for boto3 kinesis service.
  • kinesis-with-docs - Type annotations for boto3 kinesis service with included documentation.
  • kinesis-video-archived-media - Type annotations for boto3 kinesis-video-archived-media service.
  • kinesis-video-archived-media-with-docs - Type annotations for boto3 kinesis-video-archived-media service with included documentation.
  • kinesis-video-media - Type annotations for boto3 kinesis-video-media service.
  • kinesis-video-media-with-docs - Type annotations for boto3 kinesis-video-media service with included documentation.
  • kinesisanalytics - Type annotations for boto3 kinesisanalytics service.
  • kinesisanalytics-with-docs - Type annotations for boto3 kinesisanalytics service with included documentation.
  • kinesisanalyticsv2 - Type annotations for boto3 kinesisanalyticsv2 service.
  • kinesisanalyticsv2-with-docs - Type annotations for boto3 kinesisanalyticsv2 service with included documentation.
  • kinesisvideo - Type annotations for boto3 kinesisvideo service.
  • kinesisvideo-with-docs - Type annotations for boto3 kinesisvideo service with included documentation.
  • kms - Type annotations for boto3 kms service.
  • kms-with-docs - Type annotations for boto3 kms service with included documentation.
  • lakeformation - Type annotations for boto3 lakeformation service.
  • lakeformation-with-docs - Type annotations for boto3 lakeformation service with included documentation.
  • lambda - Type annotations for boto3 lambda service.
  • lambda-with-docs - Type annotations for boto3 lambda service with included documentation.
  • lex-models - Type annotations for boto3 lex-models service.
  • lex-models-with-docs - Type annotations for boto3 lex-models service with included documentation.
  • lex-runtime - Type annotations for boto3 lex-runtime service.
  • lex-runtime-with-docs - Type annotations for boto3 lex-runtime service with included documentation.
  • license-manager - Type annotations for boto3 license-manager service.
  • license-manager-with-docs - Type annotations for boto3 license-manager service with included documentation.
  • lightsail - Type annotations for boto3 lightsail service.
  • lightsail-with-docs - Type annotations for boto3 lightsail service with included documentation.
  • logs - Type annotations for boto3 logs service.
  • logs-with-docs - Type annotations for boto3 logs service with included documentation.
  • machinelearning - Type annotations for boto3 machinelearning service.
  • machinelearning-with-docs - Type annotations for boto3 machinelearning service with included documentation.
  • macie - Type annotations for boto3 macie service.
  • macie-with-docs - Type annotations for boto3 macie service with included documentation.
  • managedblockchain - Type annotations for boto3 managedblockchain service.
  • managedblockchain-with-docs - Type annotations for boto3 managedblockchain service with included documentation.
  • marketplace-entitlement - Type annotations for boto3 marketplace-entitlement service.
  • marketplace-entitlement-with-docs - Type annotations for boto3 marketplace-entitlement service with included documentation.
  • marketplacecommerceanalytics - Type annotations for boto3 marketplacecommerceanalytics service.
  • marketplacecommerceanalytics-with-docs - Type annotations for boto3 marketplacecommerceanalytics service with included documentation.
  • mediaconnect - Type annotations for boto3 mediaconnect service.
  • mediaconnect-with-docs - Type annotations for boto3 mediaconnect service with included documentation.
  • mediaconvert - Type annotations for boto3 mediaconvert service.
  • mediaconvert-with-docs - Type annotations for boto3 mediaconvert service with included documentation.
  • medialive - Type annotations for boto3 medialive service.
  • medialive-with-docs - Type annotations for boto3 medialive service with included documentation.
  • mediapackage - Type annotations for boto3 mediapackage service.
  • mediapackage-with-docs - Type annotations for boto3 mediapackage service with included documentation.
  • mediapackage-vod - Type annotations for boto3 mediapackage-vod service.
  • mediapackage-vod-with-docs - Type annotations for boto3 mediapackage-vod service with included documentation.
  • mediastore - Type annotations for boto3 mediastore service.
  • mediastore-with-docs - Type annotations for boto3 mediastore service with included documentation.
  • mediastore-data - Type annotations for boto3 mediastore-data service.
  • mediastore-data-with-docs - Type annotations for boto3 mediastore-data service with included documentation.
  • mediatailor - Type annotations for boto3 mediatailor service.
  • mediatailor-with-docs - Type annotations for boto3 mediatailor service with included documentation.
  • meteringmarketplace - Type annotations for boto3 meteringmarketplace service.
  • meteringmarketplace-with-docs - Type annotations for boto3 meteringmarketplace service with included documentation.
  • mgh - Type annotations for boto3 mgh service.
  • mgh-with-docs - Type annotations for boto3 mgh service with included documentation.
  • mobile - Type annotations for boto3 mobile service.
  • mobile-with-docs - Type annotations for boto3 mobile service with included documentation.
  • mq - Type annotations for boto3 mq service.
  • mq-with-docs - Type annotations for boto3 mq service with included documentation.
  • mturk - Type annotations for boto3 mturk service.
  • mturk-with-docs - Type annotations for boto3 mturk service with included documentation.
  • neptune - Type annotations for boto3 neptune service.
  • neptune-with-docs - Type annotations for boto3 neptune service with included documentation.
  • opsworks - Type annotations for boto3 opsworks service.
  • opsworks-with-docs - Type annotations for boto3 opsworks service with included documentation.
  • opsworkscm - Type annotations for boto3 opsworkscm service.
  • opsworkscm-with-docs - Type annotations for boto3 opsworkscm service with included documentation.
  • organizations - Type annotations for boto3 organizations service.
  • organizations-with-docs - Type annotations for boto3 organizations service with included documentation.
  • personalize - Type annotations for boto3 personalize service.
  • personalize-with-docs - Type annotations for boto3 personalize service with included documentation.
  • personalize-events - Type annotations for boto3 personalize-events service.
  • personalize-events-with-docs - Type annotations for boto3 personalize-events service with included documentation.
  • personalize-runtime - Type annotations for boto3 personalize-runtime service.
  • personalize-runtime-with-docs - Type annotations for boto3 personalize-runtime service with included documentation.
  • pi - Type annotations for boto3 pi service.
  • pi-with-docs - Type annotations for boto3 pi service with included documentation.
  • pinpoint - Type annotations for boto3 pinpoint service.
  • pinpoint-with-docs - Type annotations for boto3 pinpoint service with included documentation.
  • pinpoint-email - Type annotations for boto3 pinpoint-email service.
  • pinpoint-email-with-docs - Type annotations for boto3 pinpoint-email service with included documentation.
  • pinpoint-sms-voice - Type annotations for boto3 pinpoint-sms-voice service.
  • pinpoint-sms-voice-with-docs - Type annotations for boto3 pinpoint-sms-voice service with included documentation.
  • polly - Type annotations for boto3 polly service.
  • polly-with-docs - Type annotations for boto3 polly service with included documentation.
  • pricing - Type annotations for boto3 pricing service.
  • pricing-with-docs - Type annotations for boto3 pricing service with included documentation.
  • qldb - Type annotations for boto3 qldb service.
  • qldb-with-docs - Type annotations for boto3 qldb service with included documentation.
  • qldb-session - Type annotations for boto3 qldb-session service.
  • qldb-session-with-docs - Type annotations for boto3 qldb-session service with included documentation.
  • quicksight - Type annotations for boto3 quicksight service.
  • quicksight-with-docs - Type annotations for boto3 quicksight service with included documentation.
  • ram - Type annotations for boto3 ram service.
  • ram-with-docs - Type annotations for boto3 ram service with included documentation.
  • rds - Type annotations for boto3 rds service.
  • rds-with-docs - Type annotations for boto3 rds service with included documentation.
  • rds-data - Type annotations for boto3 rds-data service.
  • rds-data-with-docs - Type annotations for boto3 rds-data service with included documentation.
  • redshift - Type annotations for boto3 redshift service.
  • redshift-with-docs - Type annotations for boto3 redshift service with included documentation.
  • rekognition - Type annotations for boto3 rekognition service.
  • rekognition-with-docs - Type annotations for boto3 rekognition service with included documentation.
  • resource-groups - Type annotations for boto3 resource-groups service.
  • resource-groups-with-docs - Type annotations for boto3 resource-groups service with included documentation.
  • resourcegroupstaggingapi - Type annotations for boto3 resourcegroupstaggingapi service.
  • resourcegroupstaggingapi-with-docs - Type annotations for boto3 resourcegroupstaggingapi service with included documentation.
  • robomaker - Type annotations for boto3 robomaker service.
  • robomaker-with-docs - Type annotations for boto3 robomaker service with included documentation.
  • route53 - Type annotations for boto3 route53 service.
  • route53-with-docs - Type annotations for boto3 route53 service with included documentation.
  • route53domains - Type annotations for boto3 route53domains service.
  • route53domains-with-docs - Type annotations for boto3 route53domains service with included documentation.
  • route53resolver - Type annotations for boto3 route53resolver service.
  • route53resolver-with-docs - Type annotations for boto3 route53resolver service with included documentation.
  • s3 - Type annotations for boto3 s3 service.
  • s3-with-docs - Type annotations for boto3 s3 service with included documentation.
  • s3control - Type annotations for boto3 s3control service.
  • s3control-with-docs - Type annotations for boto3 s3control service with included documentation.
  • sagemaker - Type annotations for boto3 sagemaker service.
  • sagemaker-with-docs - Type annotations for boto3 sagemaker service with included documentation.
  • sagemaker-runtime - Type annotations for boto3 sagemaker-runtime service.
  • sagemaker-runtime-with-docs - Type annotations for boto3 sagemaker-runtime service with included documentation.
  • savingsplans - Type annotations for boto3 savingsplans service.
  • savingsplans-with-docs - Type annotations for boto3 savingsplans service with included documentation.
  • sdb - Type annotations for boto3 sdb service.
  • sdb-with-docs - Type annotations for boto3 sdb service with included documentation.
  • secretsmanager - Type annotations for boto3 secretsmanager service.
  • secretsmanager-with-docs - Type annotations for boto3 secretsmanager service with included documentation.
  • securityhub - Type annotations for boto3 securityhub service.
  • securityhub-with-docs - Type annotations for boto3 securityhub service with included documentation.
  • serverlessrepo - Type annotations for boto3 serverlessrepo service.
  • serverlessrepo-with-docs - Type annotations for boto3 serverlessrepo service with included documentation.
  • service-quotas - Type annotations for boto3 service-quotas service.
  • service-quotas-with-docs - Type annotations for boto3 service-quotas service with included documentation.
  • servicecatalog - Type annotations for boto3 servicecatalog service.
  • servicecatalog-with-docs - Type annotations for boto3 servicecatalog service with included documentation.
  • servicediscovery - Type annotations for boto3 servicediscovery service.
  • servicediscovery-with-docs - Type annotations for boto3 servicediscovery service with included documentation.
  • ses - Type annotations for boto3 ses service.
  • ses-with-docs - Type annotations for boto3 ses service with included documentation.
  • shield - Type annotations for boto3 shield service.
  • shield-with-docs - Type annotations for boto3 shield service with included documentation.
  • signer - Type annotations for boto3 signer service.
  • signer-with-docs - Type annotations for boto3 signer service with included documentation.
  • sms - Type annotations for boto3 sms service.
  • sms-with-docs - Type annotations for boto3 sms service with included documentation.
  • sms-voice - Type annotations for boto3 sms-voice service.
  • sms-voice-with-docs - Type annotations for boto3 sms-voice service with included documentation.
  • snowball - Type annotations for boto3 snowball service.
  • snowball-with-docs - Type annotations for boto3 snowball service with included documentation.
  • sns - Type annotations for boto3 sns service.
  • sns-with-docs - Type annotations for boto3 sns service with included documentation.
  • sqs - Type annotations for boto3 sqs service.
  • sqs-with-docs - Type annotations for boto3 sqs service with included documentation.
  • ssm - Type annotations for boto3 ssm service.
  • ssm-with-docs - Type annotations for boto3 ssm service with included documentation.
  • stepfunctions - Type annotations for boto3 stepfunctions service.
  • stepfunctions-with-docs - Type annotations for boto3 stepfunctions service with included documentation.
  • storagegateway - Type annotations for boto3 storagegateway service.
  • storagegateway-with-docs - Type annotations for boto3 storagegateway service with included documentation.
  • sts - Type annotations for boto3 sts service.
  • sts-with-docs - Type annotations for boto3 sts service with included documentation.
  • support - Type annotations for boto3 support service.
  • support-with-docs - Type annotations for boto3 support service with included documentation.
  • swf - Type annotations for boto3 swf service.
  • swf-with-docs - Type annotations for boto3 swf service with included documentation.
  • textract - Type annotations for boto3 textract service.
  • textract-with-docs - Type annotations for boto3 textract service with included documentation.
  • transcribe - Type annotations for boto3 transcribe service.
  • transcribe-with-docs - Type annotations for boto3 transcribe service with included documentation.
  • transfer - Type annotations for boto3 transfer service.
  • transfer-with-docs - Type annotations for boto3 transfer service with included documentation.
  • translate - Type annotations for boto3 translate service.
  • translate-with-docs - Type annotations for boto3 translate service with included documentation.
  • waf - Type annotations for boto3 waf service.
  • waf-with-docs - Type annotations for boto3 waf service with included documentation.
  • waf-regional - Type annotations for boto3 waf-regional service.
  • waf-regional-with-docs - Type annotations for boto3 waf-regional service with included documentation.
  • workdocs - Type annotations for boto3 workdocs service.
  • workdocs-with-docs - Type annotations for boto3 workdocs service with included documentation.
  • worklink - Type annotations for boto3 worklink service.
  • worklink-with-docs - Type annotations for boto3 worklink service with included documentation.
  • workmail - Type annotations for boto3 workmail service.
  • workmail-with-docs - Type annotations for boto3 workmail service with included documentation.
  • workmailmessageflow - Type annotations for boto3 workmailmessageflow service.
  • workmailmessageflow-with-docs - Type annotations for boto3 workmailmessageflow service with included documentation.
  • workspaces - Type annotations for boto3 workspaces service.
  • workspaces-with-docs - Type annotations for boto3 workspaces service with included documentation.
  • xray - Type annotations for boto3 xray service.
  • xray-with-docs - Type annotations for boto3 xray service with included documentation.

Project details


Release history Release notifications | RSS feed

This version

0.1.7

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mypy-boto3-0.1.7.tar.gz (55.9 kB view hashes)

Uploaded Source

Built Distribution

mypy_boto3-0.1.7-py3-none-any.whl (219.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page