xoto3
High level utilities for a subset of boto3 operations common for AWS serverless development in Python.
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 on this page — 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
xoto3 on PyPI
pip
pip install xoto3uv
uv add xoto3poetry
poetry add xoto3Installing 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 the current Python release (<3.15,>=3.12) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 1 — boto3 |
| Maintenance | actively maintained — 140 days since the last release |
| First released | |
| Downloads | 78,047/month — #14,472 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: xoto3-2.1.0-py3-none-any.whl
Tags
More Software Development packages
Provides backported and experimental type hints…
permissive · top 100 on PyPI
numpyNumPy provides an N-dimensional array object…
permissive · top 100 on PyPI
fastapiFastAPI is a Python web framework for building…
permissive · top 100 on PyPI
annotated-docProvides a way to document function parameters,…
permissive · top 100 on PyPI
typerTyper builds command-line applications from…
permissive · top 1,000 on PyPI
distlibDistlib provides low-level packaging utilities…
permissive · top 1,000 on PyPI
botoBoto is a Python interface to Amazon Web…
permissive · top 5,000 on PyPI
aioboto3Provides async/await support for AWS SDK…
permissive · top 1,000 on PyPI
types-boto3-dynamodbProvides type annotations for boto3's DynamoDB…
permissive · top 5,000 on PyPI
mypy-boto3-dynamodbProvides type annotations and IDE…
permissive · top 5,000 on PyPI
cloudwatchA Python logging handler that sends log events…
permissive · top 15,000 on PyPI
mypy-boto3-cloudwatchProvides type annotations for boto3's…
permissive · top 5,000 on PyPI
dynamodb-encryption-sdkEncrypts and decrypts DynamoDB items…
permissive · top 15,000 on PyPI
vat-utilsProvides Python utilities for VAT (Value Added…
unclear · top 15,000 on PyPI
types-boto3-logsProvides type annotations for boto3's…
permissive · top 15,000 on PyPI
aiomotoProvides async-compatible AWS service mocks for…
permissive · top 15,000 on PyPI