Top "Boto3" questions

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

Boto3 S3, sort bucket by last modified

I need to fetch a list of items from S3 using Boto3, but instead of returning default sort order (descending) …

python python-3.x amazon-web-services amazon-s3 boto3
Overwrite S3 endpoint using Boto3 configuration file

OVERVIEW: I'm trying to overwrite certain variables in boto3 using configuration file (~/aws/confg). In my usecase I want to …

python amazon-web-services boto boto3 botocore
How do we query on a secondary index of dynamodb using boto3?

Is there a way at all to query on the global secondary index of dynamodb using boto3. I dont find …

amazon-web-services amazon-dynamodb boto3
How to read image file from S3 bucket directly into memory?

I have the following code import matplotlib.pyplot as plt import matplotlib.image as mpimg import numpy as np import …

python matplotlib amazon-s3 boto3
How to have FilterExpression with multiple conditions in dynamodb

I am trying to do table scan on dynamodb Below is the code which is in javascript var params = { TableName: …

amazon-dynamodb boto3
boto3 python 2.7 ImportError: No module named boto3 USER_BASE USER_SITE site packages doesn't exist

Why python is not finding boto3 when pip or pip3 shows it's installed. I'm on Mac machine. Tried pip/pip3 …

python macos pip python-import boto3
When to use a boto3 client and when to use a boto3 resource?

I am trying to understand when I should use a Resource and when I should use a Client. The definitions …

amazon-web-services boto3
Query DynamoDB with a hash key and a range key with Boto3

I am having trouble using AWS Boto3 to query DynamoDB with a hash key and a range key at the …

amazon-dynamodb boto3
Boto3: get credentials dynamically?

I am struggling to find out how I can get my aws_access_key_id and aws_secret_access_key …

python-3.x amazon-web-services boto3
How do you use an HTTP/HTTPS proxy with boto3?

On the old boto library is was simple enough to use the proxy, proxy_port, proxy_user and proxy_pass …

proxy boto3