--- id: xoto3 version: "2.1.0" license: unclear license_treatment: unclear maintenance: active --- # xoto3 — High level utilities for a subset of boto3 operations common for AWS serverless development in Python. License: unclear · Maintenance: active · Downloads: 78.0K/mo ## What it is and what it does xoto3 is a collection of production-tested micro-utilities built on top of boto3 to simplify common AWS serverless development patterns in Python. It abstracts away boilerplate and edge cases in DynamoDB operations (transactions, batch reads/writes, queries), CloudWatch Insights URL generation, Lambda finalization, and SSM parameter handling. The package is modular—each utility stands alone and does not depend on others, so you can use only what you need. The library is designed for developers working with AWS Lambda and serverless architectures who want to reduce repetitive boto3 code and handle common gotchas (like DynamoDB's data type restrictions, batch operation limits, and parameter size constraints). It includes general-purpose utilities like tree mapping, lazy loading, and multiprocessing helpers suitable for Lambda's constrained environment. Use it for: - Simplify multi-item DynamoDB transactions and batch operations in Lambda functions without manual retry logic. - Format CloudWatch Insights query URLs and manage log group queries programmatically. - Handle SSM parameter storage that exceeds AWS size limits by automatic splitting and reconstruction. - Ensure Lambda buffered I/O flushes before function pause using built-in finalization helpers. - Work around boto3 pagination limitations with a more general-purpose paginator abstraction. - Transform and validate data before DynamoDB writes to avoid type rejection errors. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. xoto3 provides high-level utilities and abstractions for boto3 operations, particularly for AWS serverless development, including DynamoDB transactions, batch operations, CloudWatch query formatting, and Lambda finalization helpers. Yes, with a license caveat. xoto3 is actively maintained, has low install friction, and solves real serverless development pain points with production-tested code. However, verify the actual license terms before use—the metadata shows 'unclear' treatment with no SPDX identifier, which is a blocker for some projects. If the license is compatible with your use case, this is a solid utility library for boto3-heavy serverless work. ## Install pip install xoto3 uv add xoto3 poetry add xoto3 ## Installing xoto3 Before you install: Low install friction; pure Python wheel with only boto3 as a runtime dependency. Actively maintained with a recent release. License in practice: License status is unclear—no SPDX identifier or raw license text is available in the package metadata. Verify the actual license before use in proprietary or restricted contexts. Quickstart: pip install xoto3 import xoto3 from xoto3.dynamodb import transact_write_items # Use xoto3 utilities with boto3 clients response = transact_write_items(client, items) Requires Python 3.12 or later (supports 3.12, 3.13, 3.14); boto3 must be installed separately. Verify before relying: - Exact license identifier and terms—metadata shows 'unclear' treatment with no SPDX or raw license field. - Whether all DynamoDB transaction features work with current boto3 versions without additional configuration. - API stability guarantees or backward-compatibility policy across minor versions. ## Package facts - License: not declared (unclear) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 78.0K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags boto3 utilities serverless, dynamodb transactions python, aws lambda helpers, boto3 abstractions, dynamodb batch operations, cloudwatch query formatting, aws serverless utilities, aws-serverless, dynamodb, boto3-utilities [View on SkillFed](https://skillfed.io/packages/xoto3) · [View on PyPI](https://pypi.org/project/xoto3/)