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

    Sep 1, 2015 · AWS Boto is a hand-coded Python library that was difficult to maintain and is no longer officially supported. AWS Boto3 is the official Python SDK for AWS, built on top of …

  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 …

  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 …

  4. Boto [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed …

    Boto [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed while connecting to S3 Asked 10 years, 11 months ago Modified 1 year, 10 months ago Viewed 111k times

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

    At best, one should check for a non-4xx code (e.g., statusCode < 400) but that's really brittle and I would not recommend it anyway: best to rely on boto throwing exceptions at your code.

  6. boto - Boto3 Error: botocore.exceptions.NoCredentialsError: …

    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.

  7. 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 …

  8. 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 …

  9. 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 …

  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 …