Top "Boto3" questions

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

s3 urls - get bucket name and path

I have a variable which has the aws s3 url s3://bucket_name/folder1/folder2/file1.json I want to …

python boto3
How to check if DynamoDB table exists?

I'm a new user in boto3 and i'm using DynamoDB. I went through over the DynamoDB api and I couldn't …

python amazon-dynamodb boto3
S3 giving me NoSuchKey error even when the key exists

This is my boto3 command for getting the object with a specific key from an S3 bucket: resp = s3client.…

amazon-s3 boto3
Access Denied using boto3 through aws Lambda

I use the data processing pipeline constructed of S3 + SNS + Lambda becasue S3 can not send notificaiton out of its …

amazon-web-services amazon-s3 amazon-iam aws-lambda boto3
AWS BOTO3 S3 python - An error occurred (404) when calling the HeadObject operation: Not Found

I am trying download a directory inside s3 bucket. I am trying to use transfer to download a directory from …

python amazon-web-services amazon-s3 error-handling boto3
What is the difference between the AWS boto and boto3

I'm new to AWS using Python and I'm trying to learn the boto API however I noticed that there are …

python amazon-web-services boto boto3
List directory contents of an S3 bucket using Python and Boto3?

I am trying to list all directories within an S3 bucket using Python and Boto3. I am using the following …

python amazon-web-services amazon-s3 boto3
How to generate url from boto3 in amazon web services

I have a Bucket in s3 and I am trying to pull the url of the image that is in …

python amazon-s3 boto3
AWS: Boto3: AssumeRole example which includes role usage

I'm trying to use the AssumeRole in such a way that i'm traversing multiple accounts and retrieving assets for those …

boto boto3
How to upload a file to S3 and make it public using boto3?

I am able to upload an image file using: s3 = session.resource('s3') bucket = s3.Bucket(S3_BUCKET) bucket.…

python amazon-s3 boto boto3