About 32,200,000 results
Open links in new tab
  1. What is the difference between the AWS boto and boto3

    Sep 1, 2015 · The boto package is the hand-coded Python library that has been around since 2006. It is very popular and is fully supported by AWS but because it is hand-coded and there are so many …

  2. python - How do I install boto? - Stack Overflow

    Mar 20, 2010 · 1 If you already have boto installed in one python version and then install a higher python version, boto is not found by the new version of python. For example, I had python2.7 and then …

  3. No module named 'boto.vendored.six.moves' in python 3.12

    Jan 27, 2025 · I have a little knowledge of Amazon S3, but i saw the issue of the boto official on the github. boto doesn't support for the python version 12 because boto3 only support for the python …

  4. boto - Boto3 Error: botocore.exceptions.NoCredentialsError: Unable to ...

    Oct 23, 2015 · Can you post the debug output by adding boto3.set_stream_logger('botocore', level='DEBUG') before your code? It will show where it's looking for credentials.

  5. python - How to handle errors with boto3? - Stack Overflow

    python amazon-web-services boto boto3 edited Jan 28, 2020 at 7:04 Martin Thoma 139k 174 688 1.1k

  6. python - Retrieve AWS secrets using boto3 - Stack Overflow

    Feb 10, 2024 · Per the documentation, each of the example folders has one or more main runner scripts. For the Secrets Manager examples, you would run either: python scenario_get_secret.py, or …

  7. AWS: Boto3: AssumeRole example which includes role usage

    May 25, 2017 · Here's a code snippet from the official AWS documentation where an s3 resource is created for listing all s3 buckets. boto3 resources or clients for other services can be built in a similar …

  8. python - How to choose an AWS profile when using boto3 to connect …

    Oct 28, 2015 · I am using the Boto 3 python library, and want to connect to AWS CloudFront. I need to specify the correct AWS Profile (AWS Credentials), but looking at the official documentation, I see no …

  9. boto3 - What does boto stand for - Stack Overflow

    Jun 13, 2018 · What does Boto stand for in the context of AWS? It seems like a random word to choose for an api name. Is it an acronym? I have tried googling around and see no indication of what it could …

  10. Difference in Boto3 between resource, client, and session?

    Feb 7, 2012 · Client and Resource are two different abstractions within the boto3 SDK for making AWS service requests. If you want to make API calls to an AWS service with boto3, then you do so via a …