Skip to main content

Additional boto3 wrappers to make your life a little easier

Project description

boto3 assist

PyPI version License: MIT Downloads Tests Python 3.11+

Note: This library is in beta and subject to changes before its initial 1.0.0 release.

This library was created to make life a little easier when using boto3. It provides higher-level abstractions and utilities for common AWS operations.

Features

Core Capabilities

  • DynamoDB Model Mapping - Lightweight ORM-style mapping for Python objects to DynamoDB items with comprehensive docstrings
  • Session Management - Simplified session management for local, dev, and production environments
  • Key Generation - Automatic primary and sort key generation for DynamoDB
  • S3 Operations - Simplified S3 bucket and object operations
  • Cognito Integration - User authentication and management helpers
  • Error Handling - Comprehensive exception hierarchy with 20+ specific exception types
  • Configuration Management - Centralized, type-safe configuration system with environment variable support

Quality & Developer Experience

  • 231 passing tests with pytest and 55% code coverage
  • Type hints for better IDE support (PEP 561 compliant, improvements in progress)
  • Google-style docstrings with 40+ practical examples across all core DynamoDB methods
  • Pre-commit hooks for automated code quality (isort, black, flake8)
  • CI/CD pipeline with GitHub Actions testing on Python 3.11, 3.12, and 3.13
  • Comprehensive documentation for error handling, configuration, and security best practices

Installation

Requirements: Python 3.11 or higher

pip install boto3-assist

Quick Start

DynamoDB Model Mapping

from boto3_assist.dynamodb import DynamoDB, DynamoDBModelBase

class User(DynamoDBModelBase):
    def __init__(self, user_id: str, email: str, name: str):
        self.user_id = user_id
        self.email = email
        self.name = name

    def pk(self) -> str:
        return f"USER#{self.user_id}"

    def sk(self) -> str:
        return f"PROFILE#{self.user_id}"

# Save a user
db = DynamoDB(table_name="my-table")
user = User(user_id="123", email="user@example.com", name="John Doe")
db.save(user)

# Retrieve a user
retrieved_user = db.get(User, pk="USER#123", sk="PROFILE#123")

Session Management

from boto3_assist import Boto3Session

# Lazy-loaded session that works with python-dotenv
session = Boto3Session()
dynamodb = session.resource('dynamodb')

Documentation

Core Documentation

Examples & Guides

Development Documentation

Development

Setup Development Environment

# Clone the repository
git clone https://github.com/geekcafe/boto3-assist.git
cd boto3-assist

# Create virtual environment
python -m venv .venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate

# Install dependencies
pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements.dev.txt
pip install -e .

Running Tests

# Run all unit tests with coverage
pytest tests/unit/ -v --cov=src/boto3_assist --cov-report=term

# Run specific test file
pytest tests/unit/dynamodb_tests/dynamodb_test.py -v

# Run with detailed coverage report
pytest tests/unit/ -v --cov=src/boto3_assist --cov-report=term-missing

# Run pre-commit hooks
pre-commit run --all-files

Test Configuration

Tests use the moto library to mock AWS services. You'll need:

  1. A .env.unittest file at the project root (already included)
  2. A mock AWS profile in ~/.aws/config:
[profile moto-mock-tests]
region = us-east-1
output = json
aws_access_key_id = test
aws_secret_access_key = test

Code Quality

# Run pre-commit hooks
pre-commit run --all-files

# Format code
black --line-length 100 src/ tests/ examples/
isort --profile black --line-length 100 src/ tests/ examples/

# Type checking
mypy src/boto3_assist --ignore-missing-imports

# Linting
flake8 src/ --max-line-length=100

Contributing

Contributions are welcome! Please ensure:

  • All tests pass: pytest tests/unit/ -v
  • Code is formatted: black --line-length 100 src/ tests/ examples/
  • Imports are sorted: isort --profile black --line-length 100 src/ tests/ examples/
  • Pre-commit hooks pass: pre-commit run --all-files
  • New features include tests and documentation
  • Follow existing patterns for docstrings (Google-style) and type hints

See PROGRESS.md for current development priorities.

Roadmap to 1.0.0

See PROGRESS.md for detailed progress tracking.

Completed ✅

  • Quick Wins (8/8): Import organization, PEP 561 support, pre-commit hooks, security docs, GitHub Actions, pytest migration, Python 3.11+ requirement
  • Error Handling: 20+ specific exception types with error codes and structured details
  • Configuration Management: Centralized, type-safe configuration system
  • Docstrings: Google-style docstrings with 40+ practical examples for all core DynamoDB methods

In Progress 🔄

  • 🔄 Type Hints: Adding comprehensive type hints to improve IDE support (30% → 90%+ coverage)

Planned 📋

  • 📋 API Simplification: Config objects for complex method parameters
  • 📋 Input Validation: Pydantic schemas for runtime validation
  • 📋 Test Coverage: Expand from 55% to 90%+ coverage
  • 📋 Performance Benchmarks: Benchmark suite for performance tracking
  • 📋 Debugging Utilities: Enhanced debugging helpers for DynamoDB operations

License

This project is licensed under the MIT License - see the LICENSE.txt file for details.

Support

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

boto3_assist-0.53.0.tar.gz (356.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

boto3_assist-0.53.0-py3-none-any.whl (125.7 kB view details)

Uploaded Python 3

File details

Details for the file boto3_assist-0.53.0.tar.gz.

File metadata

  • Download URL: boto3_assist-0.53.0.tar.gz
  • Upload date:
  • Size: 356.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.2

File hashes

Hashes for boto3_assist-0.53.0.tar.gz
Algorithm Hash digest
SHA256 82e336bd4e036bb1b2f0620683a70a363c8e759d64fa432f6ed1fcd6c269e054
MD5 768e7118b54f184b25d9d2d43456e828
BLAKE2b-256 d350152857d73fbeff504e9a9c423c59db85a657e8ad5a606c08070f227dfc42

See more details on using hashes here.

File details

Details for the file boto3_assist-0.53.0-py3-none-any.whl.

File metadata

  • Download URL: boto3_assist-0.53.0-py3-none-any.whl
  • Upload date:
  • Size: 125.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.2

File hashes

Hashes for boto3_assist-0.53.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b5875e7b5578548c0d569475cfe5af2ae2c77f610b7a4c0c5b270a21cbf5ae5a
MD5 cbf27945e35fd1d22054e6afc6777e9c
BLAKE2b-256 e4926fc2c023fe8ab343b33ac71d33ec7102d557ae4123c653f7dcc1adb93393

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page