skillfed

boto

Amazon Web Services Library

boto v2.49.0 7.3M downloads/30d#1,756 on PyPI6,421
Permissive license MIT Abandoned released

What it is and what it does

Boto is a Python library that provides direct programmatic access to AWS services. It supports a broad range of AWS services across compute, storage, databases, networking, and management categories, with varying levels of Python 3 compatibility across different modules. The package works with Python 2.6, 2.7, 3.3, and 3.4.

The package is now in maintenance-only mode. Its developers explicitly state that the next version is stable and recommended for general use, and that all new feature work and API updates are focused there going forward. While Boto can run side-by-side with its successor in the same project, the project repository is archived and no longer actively maintained. The last release was 11-July-2018.

Use it for:

  • Maintaining legacy Python applications that depend on Boto and cannot immediately migrate to its successor.
  • Gradual migration by running both libraries in parallel during a transition period.
  • Educational purposes or historical reference to understand early AWS SDK design patterns.
  • Working with specific AWS services where Boto's older API may still be preferred in existing codebases.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Boto is a Python interface to Amazon Web Services, providing programmatic access to AWS services including EC2, S3, DynamoDB, RDS, and many others.

No, unless you are maintaining an existing legacy application that already uses Boto. The package is abandoned, its last release was 11-July-2018, and the maintainers explicitly recommend its successor for all new projects and active development. For any new work, use the next version instead. Installing Boto on new projects locks you into an unsupported codebase with no path for security updates or new AWS service support.

Install

boto on PyPI

pip

pip install boto

uv

uv add boto

poetry

poetry add boto

Installing boto

Before you install

Installation is straightforward with no runtime dependencies, but the package has been abandoned since 2018 and its repository is archived. The maintainers explicitly recommend migrating to the next version for any new work or active projects.

License in practice

Boto is licensed under the MIT License, a permissive open-source license that allows commercial and private use with minimal restrictions.

Quickstart

pip install boto

import boto
from boto.ec2 import connect_to_region
conn = connect_to_region('us-west-2', aws_access_key_id='...', aws_secret_access_key='...')

AWS credentials must be provided either as environment variables (AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY) or passed directly to connection methods.

Verify before relying

  • Current compatibility with modern Python versions beyond 3.4 given the 2018 release date and archived status.
  • Whether critical security patches or bug fixes are still being applied to the archived repository.

Package facts

License MIT (permissive)
Python support not specified
Install friction low — pure-Python wheel
Runtime dependencies none
Maintenance abandoned — 2,956 days since the last release
Last repo commit (repository archived)
First released
Downloads 7,313,071/month — #1,756 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: boto-2.49.0-py2.py3-none-any.whl

Development Status :: 5 - Production/StableIntended Audience :: DevelopersLicense :: OSI Approved :: MIT LicenseOperating System :: OS IndependentProgramming Language :: Python :: 2Programming Language :: Python :: 2.6Programming Language :: Python :: 2.7Programming Language :: Python :: 3Programming Language :: Python :: 3.3Programming Language :: Python :: 3.4Topic :: Internet

Tags

AWS Python client libraryAmazon Web Services SDKEC2 S3 DynamoDB PythonAWS API wrappercloud infrastructure automationAmazon service integrationAWS resource management
legacyaws-sdkarchived

More Internet packages