aioboto3 15.5.0


pip install aioboto3

  Latest version

Released: Oct 30, 2025


Meta
Author: Terri Cain
Requires Python: >=3.9

Classifiers

Development Status
  • 5 - Production/Stable

Intended Audience
  • Developers

License
  • OSI Approved :: Apache Software License

Natural Language
  • English

Programming Language
  • Python :: 3
  • Python :: 3.9
  • Python :: 3.10
  • Python :: 3.11
  • Python :: 3.12
  • Python :: 3.13
  • Python :: 3.14
https://img.shields.io/pypi/v/aioboto3.svg https://github.com/terrycain/aioboto3/actions/workflows/CI.yml/badge.svg Documentation Status Updates

Breaking changes for v11: The S3Transfer config passed into upload/download_file etc.. has been updated to that it matches what boto3 uses

Breaking changes for v9: aioboto3.resource and aioboto3.client methods no longer exist, make a session then call session.client etc… This was done for various reasons but mainly that it prevents the default session living longer than it should as that breaks situations where eventloops are replaced.

The .client and .resource functions must now be used as async context managers.

Now that aiobotocore has reached version 1.0.1, a side effect of the work put in to fix various issues like bucket region redirection and supporting web assume role type credentials, the client must now be instantiated using a context manager, which by extension applies to the resource creator. You used to get away with calling res = aioboto3.resource('dynamodb') but that no longer works. If you really want to do that, you can do res = await aioboto3.resource('dynamodb').__aenter__() but you’ll need to remember to call __aexit__.

There will most likely be some parts that dont work now which I’ve missed, just make an issue and we’ll get them resoved quickly.

Creating service resources must also be async now, e.g.

async def main():
    session = aioboto3.Session()
    async with session.resource("s3") as s3:
        bucket = await s3.Bucket('mybucket')  # <----------------
        async for s3_object in bucket.objects.all():
            print(s3_object)

Updating to aiobotocore 1.0.1 also brings with it support for running inside EKS as well as asyncifying get_presigned_url


This package is mostly just a wrapper combining the great work of boto3 and aiobotocore.

aiobotocore allows you to use near enough all of the boto3 client commands in an async manner just by prefixing the command with await.

With aioboto3 you can now use the higher level APIs provided by boto3 in an asynchronous manner. Mainly I developed this as I wanted to use the boto3 dynamodb Table object in some async microservices.

While all resources in boto3 should work I havent tested them all, so if what your after is not in the table below then try it out, if it works drop me an issue with a simple test case and I’ll add it to the table.

Services

Status

DynamoDB Service Resource

Tested and working

DynamoDB Table

Tested and working

S3

Working

Kinesis

Working

SSM Parameter Store

Working

Athena

Working

Example

Simple example of using aioboto3 to put items into a dynamodb table

import asyncio
import aioboto3
from boto3.dynamodb.conditions import Key


async def main():
    session = aioboto3.Session()
    async with session.resource('dynamodb', region_name='eu-central-1') as dynamo_resource:
        table = await dynamo_resource.Table('test_table')

        await table.put_item(
            Item={'pk': 'test1', 'col1': 'some_data'}
        )

        result = await table.query(
            KeyConditionExpression=Key('pk').eq('test1')
        )

        # Example batch write
        more_items = [{'pk': 't2', 'col1': 'c1'}, \
                      {'pk': 't3', 'col1': 'c3'}]
        async with table.batch_writer() as batch:
            for item_ in more_items:
                await batch.put_item(Item=item_)

loop = asyncio.get_event_loop()
loop.run_until_complete(main())

# Outputs:
#  [{'col1': 'some_data', 'pk': 'test1'}]

Things that either dont work or have been patched

As this library literally wraps boto3, its inevitable that some things won’t magically be async.

Fixed:

  • s3_client.download_file* This is performed by the s3transfer module. – Patched with get_object

  • s3_client.upload_file* This is performed by the s3transfer module. – Patched with custom multipart upload

  • s3_client.copy This is performed by the s3transfer module. – Patched to use get_object -> upload_fileobject

  • dynamodb_resource.Table.batch_writer This now returns an async context manager which performs the same function

  • Resource waiters - You can now await waiters which are part of resource objects, not just client waiters, e.g. await dynamodbtable.wait_until_exists()

  • Resource object properties are normally autoloaded, now they are all co-routines and the metadata they come from will be loaded on first await and then cached thereafter.

  • S3 Bucket.objects object now works and has been asyncified. Examples here - https://aioboto3.readthedocs.io/en/latest/usage.html#s3-resource-objects

Amazon S3 Client-Side Encryption

Boto3 doesn’t support AWS client-side encryption so until they do I’ve added basic support for it. Docs here CSE

CSE requires the python cryptography library so if you do pip install aioboto3[s3cse] that’ll also include cryptography.

This library currently supports client-side encryption using KMS-Managed master keys performing envelope encryption using either AES/CBC/PKCS5Padding or preferably AES/GCM/NoPadding. The files generated are compatible with the Java Encryption SDK so I will assume they are compatible with the Ruby, PHP, Go and C++ libraries as well.

Non-KMS managed keys are not yet supported but if you have use of that, raise an issue and i’ll look into it.

Documentation

Docs are here - https://aioboto3.readthedocs.io/en/latest/

Examples here - https://aioboto3.readthedocs.io/en/latest/usage.html

Features

  • Closely mimics the usage of boto3.

Todo

  • More examples

  • Set up docs

  • Look into monkey-patching the aws xray sdk to be more async if it needs to be.

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template. It also makes use of the aiobotocore and boto3 libraries. All the credit goes to them, this is mainly a wrapper with some examples.

15.5.0 Oct 30, 2025
15.4.0 Oct 18, 2025
15.3.0 Oct 18, 2025
15.2.0 Oct 04, 2025
15.1.0 Aug 14, 2025
15.0.0 Jun 26, 2025
14.3.0 May 07, 2025
14.2.0 May 05, 2025
14.1.0 Mar 04, 2025
14.0.0 Feb 23, 2025
13.4.0 Jan 19, 2025
13.3.0 Dec 21, 2024
13.2.0 Oct 13, 2024
13.1.1 Jul 09, 2024
13.1.0 Jun 25, 2024
13.0.1 Jun 05, 2024
13.0.0 May 27, 2024
12.4.0 Apr 15, 2024
12.3.0 Feb 04, 2024
12.2.0 Jan 16, 2024
12.1.0 Dec 08, 2023
12.0.0 Oct 25, 2023
11.3.1 Oct 14, 2023
11.3.0 Aug 19, 2023
11.2.0 May 10, 2023
11.1.1 Sep 25, 2023
11.1.0 Mar 30, 2023
11.0.1 Mar 06, 2023
11.0.0 Mar 05, 2023
10.4.0 Jan 31, 2023
10.3.0 Jan 04, 2023
10.2.0 Dec 03, 2022
10.1.0 Sep 21, 2022
10.0.1a0 Aug 11, 2022
10.0.0 Aug 10, 2022
9.6.0 May 06, 2022
9.5.0 Mar 29, 2022
9.4.0 Mar 13, 2022
9.3.1 Jan 13, 2022
9.3.0 Dec 13, 2021
9.2.2 Oct 06, 2021
9.2.0 Jul 22, 2021
9.2.0b0 Jul 19, 2021
9.1.0 Jul 16, 2021
9.0.0 Jun 27, 2021
8.3.0 Mar 24, 2021
8.2.1 Mar 02, 2021
8.2.0 Dec 02, 2020
8.1.1 Dec 01, 2020
8.1.0 Dec 01, 2020
8.0.5 Jul 08, 2020
8.0.4 Jul 07, 2020
8.0.3 Apr 25, 2020
8.0.2 Apr 10, 2020
8.0.1 Apr 08, 2020
8.0.0 Apr 03, 2020
7.1.0 Mar 31, 2020
7.0.0 Mar 17, 2020
6.5.0 Feb 20, 2020
6.4.1 Jun 19, 2019
6.3.0 May 07, 2019
6.2.2 Mar 11, 2019
6.2.1 Mar 04, 2019
6.2.0 Feb 27, 2019
6.1.0 Feb 13, 2019
6.0.1 Nov 22, 2018
6.0.0 Nov 21, 2018
5.0.0 Oct 11, 2018
4.1.2 Aug 28, 2018
4.0.2 Aug 03, 2018
4.0.1 May 11, 2018
4.0.0 May 09, 2018
3.0.0 Mar 29, 2018
2.2.0 Jan 24, 2018
2.1.0 Jan 23, 2018
2.0.1 Dec 01, 2017
2.0.0 Nov 30, 2017
1.1.2 Nov 29, 2017
1.1.1 Nov 28, 2017
1.1.0 Oct 11, 2017
1.0.0 Sep 27, 2017

Wheel compatibility matrix

Platform Python 3
any

Files in release

Extras:
Dependencies:
aiobotocore[boto3] (==2.25.1)
aiofiles (>=23.2.1)