Python SDK for Amazon S3.
Project description
Getting Started
Installation
pip install aws-sdk-s3
Usage
from aws_sdk_s3 import AsyncS3Client
async def main():
async with AsyncS3Client() as s3:
# Example: call the abort_multipart_upload operation
response = await s3.abort_multipart_upload()
print(response["request_charged"])
Pagination
Some operations in this SDK support pagination. If the operation supports pagination it will have an iter_ prefixed method that returns an async iterator.
from aws_sdk_s3 import AsyncS3Client
async def main():
async with AsyncS3Client() as s3:
# Example: paginate over list_buckets
async for item in s3.iter_list_buckets():
print(item)
Streaming Request
Some operations accept a streaming request body. Pass an async iterator of bytes chunks for the streaming parameter.
from aws_sdk_s3 import AsyncS3Client
async def main():
async with AsyncS3Client() as s3:
# Example: call put_object with a streaming request body
async def chunks():
yield b"Hello, World!"
response = await s3.put_object(body=chunks())
print(response)
Streaming Response
Some operations return a streaming response body. Use the operation as an async context manager and iterate over the response field to read chunks.
from aws_sdk_s3 import AsyncS3Client
async def main():
async with AsyncS3Client() as s3:
# Example: call get_object and read the streaming response
async with s3.get_object() as response:
async for chunk in response["body"]:
print(chunk)
Waiters
Waiters poll an operation until a resource reaches a desired state. If the operation supports waiters it will have a wait_ prefixed method.
from aws_sdk_s3 import AsyncS3Client
async def main():
async with AsyncS3Client() as s3:
# Example: wait for bucket_exists
await s3.wait_bucket_exists(max_wait_time=300)
Presigning
Some operations support presigning, which generates a URL that can be used without credentials. Use the presigned_ prefixed method on the client to get a presigned URL.
from aws_sdk_s3 import AsyncS3Client
async def main():
async with AsyncS3Client() as s3:
# Example: get a presigned URL for delete_object
url = s3.presigned_delete_object()
print(url)
Error Handling
The SDK raises exceptions for errors returned by the API. Catch them to handle failures gracefully.
from aws_sdk_s3 import AsyncS3Client
from aws_sdk_s3.error import NoSuchUpload
async def main():
async with AsyncS3Client() as s3:
try:
await s3.abort_multipart_upload()
except NoSuchUpload as e:
print(f"Error: {e}")
print(e.data) # additional error data
Retrying
The SDK retries failed operations automatically. Retry behaviour follows the Smithy specification: errors are retried based on their is_retryable and is_throttling_error attributes. Throttling errors use a longer base delay. Network-level failures (connection errors and timeouts) are also retried. Non-retryable errors, such as client errors without the @retryable trait, are raised immediately without further attempts.
The number of attempts defaults to 3 and can be changed at the client level via retry_max_attempts, or per call via config_overrides.
from aws_sdk_s3 import AsyncS3Client
async def main():
async with AsyncS3Client() as s3:
# Default: 3 attempts for every operation
response = await s3.abort_multipart_upload()
# Override per operation
response = await s3.abort_multipart_upload(config_overrides={"retry_max_attempts": 5})
# Disable retries for this call
response = await s3.abort_multipart_upload(config_overrides={"retry_max_attempts": 1})
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aws_sdk_s3-0.4.0.tar.gz.
File metadata
- Download URL: aws_sdk_s3-0.4.0.tar.gz
- Upload date:
- Size: 565.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
089f69353be5e7e5827a6af23bbd8fd898c91482ba9d10b29b32c779c1502f3f
|
|
| MD5 |
965dc905efa2dbef210d3ab29fbbdac7
|
|
| BLAKE2b-256 |
481d49f390ecafd2c1c5d6dcb7c03da5d67f63626b15d3f66ef8373514e490e7
|
Provenance
The following attestation bundles were made for aws_sdk_s3-0.4.0.tar.gz:
Publisher:
auto-publish.yml on kap-sh/aws-sdk-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aws_sdk_s3-0.4.0.tar.gz -
Subject digest:
089f69353be5e7e5827a6af23bbd8fd898c91482ba9d10b29b32c779c1502f3f - Sigstore transparency entry: 1810071113
- Sigstore integration time:
-
Permalink:
kap-sh/aws-sdk-python@0d6afdf3c0c27da8fa606831dee2eaf32273b9db -
Branch / Tag:
refs/heads/main - Owner: https://github.com/kap-sh
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
auto-publish.yml@0d6afdf3c0c27da8fa606831dee2eaf32273b9db -
Trigger Event:
push
-
Statement type:
File details
Details for the file aws_sdk_s3-0.4.0-py3-none-any.whl.
File metadata
- Download URL: aws_sdk_s3-0.4.0-py3-none-any.whl
- Upload date:
- Size: 1.1 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6676e71a104a4443696d2f07e44fd8885aa661572b66aa313a8466461017a3d
|
|
| MD5 |
4fc77746a7d6dafe60815b1e64b0aa35
|
|
| BLAKE2b-256 |
ea3ff448411ee8bef89290d39e015f1f43a88e8121c4641efa57e90dd533ec9b
|
Provenance
The following attestation bundles were made for aws_sdk_s3-0.4.0-py3-none-any.whl:
Publisher:
auto-publish.yml on kap-sh/aws-sdk-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aws_sdk_s3-0.4.0-py3-none-any.whl -
Subject digest:
f6676e71a104a4443696d2f07e44fd8885aa661572b66aa313a8466461017a3d - Sigstore transparency entry: 1810071189
- Sigstore integration time:
-
Permalink:
kap-sh/aws-sdk-python@0d6afdf3c0c27da8fa606831dee2eaf32273b9db -
Branch / Tag:
refs/heads/main - Owner: https://github.com/kap-sh
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
auto-publish.yml@0d6afdf3c0c27da8fa606831dee2eaf32273b9db -
Trigger Event:
push
-
Statement type: