Top "Boto3" questions

Boto 3 - The Amazon Web Services (AWS) SDK for Python

What is the difference between boto3 list_objects and list_objects_v2?

I'm trying to list objects in an Amazon s3 bucket in python using boto3. It seems boto3 has 2 functions for …

python amazon-s3 boto3
How to use boto3 client with Python multiprocessing?

Code looks something like this: import multiprocessing as mp from functools import partial import boto3 import numpy as np s3 = …

python boto3 python-multiprocessing starmap
How do I get the size of a boto3 Collection?

The way I have been using is to transform the Collection into a List and query the length: s3 = boto3.…

python collections boto3
Change the number of request retries in boto3

In boto3 or botocore, how do I do the equivalent of setting the number of request retries? e.g. in …

python amazon-web-services boto boto3
How to convert a boto3 Dynamo DB item to a regular dictionary in Python?

In Python, when an item is retrieved from Dynamo DB using boto3, a schema like the following is obtained. { "ACTIVE": { "…

python amazon-web-services dictionary amazon-dynamodb boto3
ImportError: No module named boto3

Installed the boto3 and upgraded it to the latest release. I tried the easy install pip for installation. I have …

raspberry-pi2 boto3
Properly catch boto3 Errors

I am developing a django app which communicates with several Amazon Web Services. So far I am having trouble dealing …

python amazon-web-services exception boto3
Boto3 error: The AWS Access Key Id you provided does not exist in our records

I am currently trying to get access to Amazon S3 inside a virtual machine and download files like so: s3 = …

amazon-web-services amazon-s3 boto boto3
Send an SMS via AWS SNS using boto3 in an AWS Lambda function?

I would like to send an SMS message from an AWS Lambda function using the boto3 publish method to notify …

python-2.7 sms amazon-sns boto3 aws-lambda
Any way to write files DIRECTLY to S3 using boto3?

I wrote a python script to process very large files (few TB in total), which I'll run on an EC2 …

python amazon-web-services amazon-s3 boto3