boto3-stubs-full 1.40.56


pip install boto3-stubs-full

  Latest version

Released: Oct 22, 2025


Meta
Author: Vlad Emelianov
Requires Python: >=3.8

Classifiers

Development Status
  • 5 - Production/Stable

Intended Audience
  • Developers

Environment
  • Console

License
  • OSI Approved :: MIT License

Natural Language
  • English

Operating System
  • OS Independent

Programming Language
  • Python :: 3
  • Python :: 3.8
  • Python :: 3.9
  • Python :: 3.10
  • Python :: 3.11
  • Python :: 3.12
  • Python :: 3.13
  • Python :: 3.14
  • Python :: 3 :: Only
  • Python :: Implementation :: CPython

Typing
  • Stubs Only

boto3-stubs-full

PyPI - boto3-stubs-full PyPI - Python Version Docs PyPI - Downloads

boto3.typed

Type annotations for boto3 1.40.56 compatible with VSCode, PyCharm, Emacs, Sublime Text, mypy, pyright and other tools.

Generated with mypy-boto3-builder 8.11.0.

More information can be found on boto3-stubs page and in boto3-stubs-full docs.

See how it helps you find and fix potential bugs:

types-boto3 demo

How to install

Generate locally (recommended)

You can generate type annotations for boto3 package locally with mypy-boto3-builder. Use uv for build isolation.

  1. Run mypy-boto3-builder in your package root directory: uvx --with 'boto3==1.40.56' mypy-boto3-builder
  2. Select boto3-stubs AWS SDK.
  3. Add all available services.
  4. Use provided commands to install generated packages.

VSCode extension

Add AWS Boto3 extension to your VSCode and run AWS boto3: Quick Start command.

Click Auto-discover services and select services you use in the current project.

From PyPI with pip

Install boto3-stubs-full to add type checking for boto3 package.

# install type annotations
python -m pip install 'boto3-stubs[full]'

# or install annotations in sync with boto3 version
python -m pip install 'boto3-stubs[full,boto3]'

How to uninstall

# uninstall boto3-stubs
python -m pip uninstall -y boto3-stubs-full boto3-stubs

Usage

VSCode

python -m pip install 'boto3-stubs[full]'

Both type checking and code completion should now work. No explicit type annotations required, write your boto3 code as usual.

PyCharm

⚠️ Due to slow PyCharm performance on Literal overloads (issue PY-40997), it is recommended to use boto3-stubs-lite until the issue is resolved.

⚠️ If you experience slow performance and high CPU usage, try to disable PyCharm type checker and use mypy or pyright instead.

⚠️ To continue using PyCharm type checker, you can try to replace boto3-stubs with boto3-stubs-lite:

python -m pip uninstall -y boto3-stubs
python -m pip install 'boto3-stubs-lite[full]'

Install boto3-stubs-lite in your environment:

python -m pip install 'boto3-stubs-lite[full]'

Both type checking and code completion should now work.

Emacs

  • Install boto3-stubs-full in your environment:
python -m pip install 'boto3-stubs[full]'
(use-package lsp-pyright
  :ensure t
  :hook (python-mode . (lambda ()
                          (require 'lsp-pyright)
                          (lsp)))  ; or lsp-deferred
  :init (when (executable-find "python3")
          (setq lsp-pyright-python-executable-cmd "python3"))
  )
  • Make sure emacs uses the environment where you have installed boto3-stubs-full

Type checking should now work. No explicit type annotations required, write your boto3 code as usual.

Sublime Text

  • Install boto3-stubs-full in your environment:
python -m pip install 'boto3-stubs[full]'

Type checking should now work. No explicit type annotations required, write your boto3 code as usual.

Other IDEs

Not tested, but as long as your IDE supports mypy or pyright, everything should work.

mypy

  • Install mypy: python -m pip install mypy
  • Install boto3-stubs-full in your environment:
python -m pip install 'boto3-stubs[full]'

Type checking should now work. No explicit type annotations required, write your boto3 code as usual.

pyright

  • Install pyright: npm i -g pyright
  • Install boto3-stubs-full in your environment:
python -m pip install 'boto3-stubs[full]'

Optionally, you can install boto3-stubs-full to typings directory.

Type checking should now work. No explicit type annotations required, write your boto3 code as usual.

Pylint compatibility

It is totally safe to use TYPE_CHECKING flag in order to avoid boto3-stubs-full dependency in production. However, there is an issue in pylint that it complains about undefined variables. To fix it, set all types to object in non-TYPE_CHECKING mode.

from typing import TYPE_CHECKING

if TYPE_CHECKING:
    from mypy_boto3_ec2 import EC2Client, EC2ServiceResource
    from mypy_boto3_ec2.waiters import BundleTaskCompleteWaiter
    from mypy_boto3_ec2.paginators import DescribeVolumesPaginator
else:
    EC2Client = object
    EC2ServiceResource = object
    BundleTaskCompleteWaiter = object
    DescribeVolumesPaginator = object

...

Explicit type annotations

To speed up type checking and code completion, you can set types explicitly.

import boto3
from boto3.session import Session

from mypy_boto3_ec2.client import EC2Client
from mypy_boto3_ec2.service_resource import EC2ServiceResource
from mypy_boto3_ec2.waiter import BundleTaskCompleteWaiter
from mypy_boto3_ec2.paginator import DescribeVolumesPaginator

session = Session(region_name="us-west-1")

ec2_client: EC2Client = boto3.client("ec2", region_name="us-west-1")
ec2_resource: EC2ServiceResource = session.resource("ec2")

bundle_task_complete_waiter: BundleTaskCompleteWaiter = ec2_client.get_waiter(
    "bundle_task_complete"
)
describe_volumes_paginator: DescribeVolumesPaginator = ec2_client.get_paginator("describe_volumes")

How it works

Fully automated mypy-boto3-builder carefully generates type annotations for each service, patiently waiting for boto3 updates. It delivers drop-in type annotations for you and makes sure that:

  • All available boto3 services are covered.
  • Each public class and method of every boto3 service gets valid type annotations extracted from botocore schemas.
  • Type annotations include up-to-date documentation.
  • Link to documentation is provided for every method.
  • Code is processed by ruff for readability.

What's new

Implemented features

  • Fully type annotated boto3, botocore, aiobotocore and aioboto3 libraries
  • mypy, pyright, VSCode, PyCharm, Sublime Text and Emacs compatibility
  • Client, ServiceResource, Resource, Waiter Paginator type annotations for each service
  • Generated TypeDefs for each service
  • Generated Literals for each service
  • Auto discovery of types for boto3.client and boto3.resource calls
  • Auto discovery of types for session.client and session.resource calls
  • Auto discovery of types for client.get_waiter and client.get_paginator calls
  • Auto discovery of types for ServiceResource and Resource collections
  • Auto discovery of types for aiobotocore.Session.create_client calls

Latest changes

Builder changelog can be found in Releases.

Versioning

boto3-stubs-full version is the same as related boto3 version and follows Python Packaging version specifiers.

Thank you

Documentation

All services type annotations can be found in boto3 docs

Support and contributing

This package is auto-generated. Please reports any bugs or request new features in mypy-boto3-builder repository.

1.40.56 Oct 22, 2025
1.40.55 Oct 18, 2025
1.40.54 Oct 17, 2025
1.40.53 Oct 16, 2025
1.40.52 Oct 15, 2025
1.40.51 Oct 14, 2025
1.40.50 Oct 11, 2025
1.40.49 Oct 10, 2025
1.40.48 Oct 09, 2025
1.40.47 Oct 08, 2025
1.40.46 Oct 07, 2025
1.40.45 Oct 04, 2025
1.40.44 Oct 03, 2025
1.40.43 Oct 02, 2025
1.40.42 Oct 01, 2025
1.40.41 Sep 30, 2025
1.40.40 Sep 27, 2025
1.40.39 Sep 26, 2025
1.40.38 Sep 25, 2025
1.40.37 Sep 24, 2025
1.40.36 Sep 23, 2025
1.40.35 Sep 20, 2025
1.40.34 Sep 19, 2025
1.40.33 Sep 18, 2025
1.40.32 Sep 17, 2025
1.40.31 Sep 16, 2025
1.40.30 Sep 13, 2025
1.40.29 Sep 12, 2025
1.40.28 Sep 11, 2025
1.40.27 Sep 10, 2025
1.40.26 Sep 09, 2025
1.40.25 Sep 06, 2025
1.40.24 Sep 05, 2025
1.40.23 Sep 04, 2025
1.40.22 Sep 03, 2025
1.40.21 Aug 30, 2025
1.40.20 Aug 29, 2025
1.40.19 Aug 28, 2025
1.40.18 Aug 27, 2025
1.40.17 Aug 26, 2025
1.40.16 Aug 23, 2025
1.40.15 Aug 22, 2025
1.40.14 Aug 21, 2025
1.40.13 Aug 20, 2025
1.40.12 Aug 19, 2025
1.40.11 Aug 16, 2025
1.40.10 Aug 15, 2025
1.40.9 Aug 14, 2025
1.40.8 Aug 13, 2025
1.40.7 Aug 12, 2025
1.40.6 Aug 09, 2025
1.40.5 Aug 08, 2025
1.40.4 Aug 07, 2025
1.40.3 Aug 06, 2025
1.40.2 Aug 05, 2025
1.40.1 Aug 02, 2025
1.40.0 Aug 01, 2025
1.39.17 Jul 31, 2025
1.39.16 Jul 30, 2025
1.39.15 Jul 29, 2025
1.39.14 Jul 26, 2025
1.39.13 Jul 25, 2025
1.39.12 Jul 24, 2025
1.39.11 Jul 23, 2025
1.39.10 Jul 22, 2025
1.39.9 Jul 19, 2025
1.39.8 Jul 18, 2025
1.39.7 Jul 17, 2025
1.39.5 Jul 16, 2025
1.39.4 Jul 10, 2025
1.39.3 Jul 04, 2025
1.39.2 Jul 03, 2025
1.39.1 Jul 02, 2025
1.39.0 Jul 01, 2025
1.38.46 Jun 28, 2025
1.38.45 Jun 27, 2025
1.38.44 Jun 26, 2025
1.38.43 Jun 25, 2025
1.38.42 Jun 24, 2025
1.38.41 Jun 21, 2025
1.38.40 Jun 20, 2025
1.38.39 Jun 19, 2025
1.38.38 Jun 18, 2025
1.38.37 Jun 17, 2025
1.38.36 Jun 13, 2025
1.38.35 Jun 12, 2025
1.38.34 Jun 11, 2025
1.38.33 Jun 10, 2025
1.38.32 Jun 07, 2025
1.38.31 Jun 06, 2025
1.38.30 Jun 05, 2025
1.38.29 Jun 04, 2025
1.38.28 Jun 03, 2025
1.38.27 May 31, 2025
1.38.26 May 30, 2025
1.38.25 May 29, 2025
1.38.24 May 28, 2025
1.38.23 May 24, 2025
1.38.22 May 23, 2025
1.38.21 May 22, 2025
1.38.20 May 21, 2025
1.38.19 May 20, 2025
1.38.18 May 17, 2025
1.38.17 May 16, 2025
1.38.16 May 15, 2025
1.38.15 May 14, 2025
1.38.14 May 13, 2025
1.38.13 May 10, 2025
1.38.12 May 09, 2025
1.38.11 May 08, 2025
1.38.10 May 07, 2025
1.38.9 May 06, 2025
1.38.8 May 03, 2025
1.38.7 May 02, 2025
1.38.6 May 01, 2025
1.38.5 Apr 30, 2025
1.38.4 Apr 29, 2025
1.38.3 Apr 26, 2025
1.38.2 Apr 25, 2025
1.38.1 Apr 24, 2025
1.38.0 Apr 23, 2025
1.37.38 Apr 22, 2025
1.37.37 Apr 19, 2025
1.37.36 Apr 18, 2025
1.37.35 Apr 17, 2025
1.37.34 Apr 15, 2025
1.37.33 Apr 12, 2025
1.37.32 Apr 11, 2025
1.37.31 Apr 10, 2025
1.37.30 Apr 09, 2025
1.37.29 Apr 08, 2025
1.37.28 Apr 05, 2025
1.37.27 Apr 04, 2025
1.37.26 Apr 03, 2025
1.37.25 Apr 02, 2025
1.37.24 Apr 01, 2025
1.37.23 Mar 29, 2025
1.37.22 Mar 28, 2025
1.37.21 Mar 27, 2025
1.37.20 Mar 26, 2025
1.37.19 Mar 25, 2025
1.37.18 Mar 22, 2025
1.37.17 Mar 21, 2025
1.37.16 Mar 20, 2025
1.37.15 Mar 19, 2025
1.37.14 Mar 18, 2025
1.37.13 Mar 15, 2025
1.37.12 Mar 14, 2025
1.37.11 Mar 12, 2025
1.37.10 Mar 11, 2025
1.37.9 Mar 08, 2025
1.37.8 Mar 07, 2025
1.37.7 Mar 06, 2025
1.37.6 Mar 05, 2025
1.37.5 Mar 04, 2025
1.37.4 Mar 01, 2025
1.37.3 Feb 28, 2025
1.37.2 Feb 27, 2025
1.37.1 Feb 26, 2025
1.37.0 Feb 25, 2025
1.36.26 Feb 22, 2025
1.36.25 Feb 21, 2025
1.36.24 Feb 20, 2025
1.36.23 Feb 19, 2025
1.36.22 Feb 18, 2025
1.36.21 Feb 15, 2025
1.36.18 Feb 12, 2025
1.36.17 Feb 11, 2025
1.36.16 Feb 08, 2025
1.36.15 Feb 07, 2025
1.36.14 Feb 06, 2025
1.36.13 Feb 05, 2025
1.36.12 Feb 04, 2025
1.36.11 Feb 01, 2025
1.36.10 Jan 31, 2025
1.36.9 Jan 30, 2025
1.36.8 Jan 29, 2025
1.36.7 Jan 28, 2025
1.36.6 Jan 25, 2025
1.36.5 Jan 24, 2025
1.36.4 Jan 23, 2025
1.36.3 Jan 22, 2025
1.36.2 Jan 18, 2025
1.36.1 Jan 17, 2025
1.36.0 Jan 16, 2025
1.35.99 Jan 15, 2025
1.35.98 Jan 14, 2025
1.35.97 Jan 11, 2025
1.35.96 Jan 10, 2025
1.35.95 Jan 09, 2025
1.35.94 Jan 08, 2025
1.35.93 Jan 07, 2025
1.35.92 Jan 04, 2025
1.35.91 Jan 03, 2025
1.35.90 Dec 29, 2024
1.35.89 Dec 28, 2024
1.35.88 Dec 27, 2024
1.35.87 Dec 24, 2024
1.35.86 Dec 21, 2024
1.35.85 Dec 20, 2024
1.35.84 Dec 19, 2024
1.35.83 Dec 18, 2024
1.35.82 Dec 17, 2024
1.35.81 Dec 14, 2024
1.35.80 Dec 13, 2024
1.35.79 Dec 12, 2024
1.35.78 Dec 11, 2024
1.35.77 Dec 10, 2024
1.35.76 Dec 06, 2024
1.35.75 Dec 05, 2024
1.35.74 Dec 04, 2024
1.35.72 Dec 03, 2024
1.35.71 Nov 28, 2024
1.35.70 Nov 27, 2024
1.35.69 Nov 26, 2024
1.35.68 Nov 23, 2024
1.35.66 Nov 21, 2024
1.35.65 Nov 20, 2024
1.35.64 Nov 19, 2024
1.35.63 Nov 16, 2024
1.35.61 Nov 15, 2024
1.35.60 Nov 14, 2024
1.35.59 Nov 13, 2024
1.35.58 Nov 12, 2024
1.35.57 Nov 09, 2024
1.35.56 Nov 07, 2024
1.35.55 Nov 07, 2024
1.35.54 Nov 02, 2024
1.35.53 Nov 01, 2024
1.35.52 Oct 31, 2024
1.35.51 Oct 30, 2024
1.35.50 Oct 29, 2024
1.35.49 Oct 26, 2024
1.35.46 Oct 23, 2024
1.35.45 Oct 22, 2024
1.35.44 Oct 19, 2024
1.35.43 Oct 18, 2024
1.35.42 Oct 17, 2024
1.35.41 Oct 16, 2024
1.35.40 Oct 15, 2024
1.35.39 Oct 12, 2024
1.35.38 Oct 11, 2024
1.35.37 Oct 10, 2024
1.35.36 Oct 09, 2024
1.35.35 Oct 08, 2024
1.35.34 Oct 05, 2024
1.35.33 Oct 04, 2024
1.35.32 Oct 03, 2024
1.35.31 Oct 02, 2024
1.35.29 Sep 28, 2024
1.35.28 Sep 27, 2024
1.35.27 Sep 26, 2024
1.35.26 Sep 25, 2024
1.35.25 Sep 24, 2024
1.35.10 Aug 31, 2024

Wheel compatibility matrix

Platform Python 3
any

Files in release

Extras: None
Dependencies:
typing-extensions