dynamo-json
Swap between DynamoDB JSON and normal JSON
What it is and what it does
dynamo-json is a small utility that translates between DynamoDB's native JSON representation (which includes type descriptors like {"S": "value"} for strings and {"L": [...]} for lists) and standard JSON. It provides both a Python library with marshall() and unmarshall() functions and a CLI tool for quick conversions. The package has no runtime dependencies, making it lightweight to install.
The tool is useful when working with DynamoDB's low-level API or when you need to inspect or transform DynamoDB responses into plain JSON. However, the project is abandoned—the last release was 2020-06-30 and the last commit 2022-12-08—so it will not receive updates for Python compatibility, security issues, or bug fixes. Modern DynamoDB clients (like boto3 with its resource layer) often handle this conversion automatically, so you may not need this package unless you're working with raw DynamoDB JSON or legacy code.
Use it for:
- Convert plain JSON objects to DynamoDB type-descriptor format for low-level API calls or testing
- Transform DynamoDB API responses back to standard JSON for easier inspection or downstream processing
- Quick command-line conversion of JSON documents to verify DynamoDB format without writing code
- Legacy codebases that predate boto3's resource abstraction and need manual format translation
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Converts between DynamoDB's native JSON format (with type descriptors) and standard JSON, via library functions or a command-line tool.
No. The package is abandoned (last release 2020-06-30, no updates since 2022) and will not receive maintenance or security updates. Modern DynamoDB clients like boto3 handle this conversion automatically. Install only if you have legacy code that explicitly depends on it or are working with raw DynamoDB JSON in a controlled, non-production environment.
Install
dynamo-json on PyPI
pip
pip install dynamo-jsonuv
uv add dynamo-jsonpoetry
poetry add dynamo-jsonInstalling dynamo-json
Before you install
Low install friction with no runtime dependencies. Maintenance is abandoned—last release was 2020-06-30 and last commit 2022-12-08—so expect no updates for security, compatibility, or bug fixes.
License in practice
MIT license (permissive) means you can use, modify, and distribute freely with minimal restrictions.
Quickstart
pip install dynamo_json
import dynamo_json
# Convert normal JSON to DynamoDB format
dynamo_json.marshall({"some": ["json", "document"]})
# {"some": {"L": [{"S": "json"}, {"S": "document"}]}}
# Convert DynamoDB format back to normal JSON
dynamo_json.unmarshall({"some": {"L": [{"S": "json"}, {"S": "document"}]}})
# {"some": ["json", "document"]}
Verify before relying
- Whether the package handles all DynamoDB type descriptors (binary, sets, nested structures, etc.) or only a subset
- Compatibility with modern Python versions beyond 3.8, given the abandoned status and classifiers stopping at 3.8
Package facts
| License | not declared (permissive) |
| Python support | not specified |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | none |
| Maintenance | abandoned — 2,236 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 138,511/month — #11,327 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: dynamo_json-1.2.0-py2.py3-none-any.whl
Keywords: dynamo, json, dynamodb
Tags
More Python Modules packages
Converts domain names between Unicode and…
permissive · top 100 on PyPI
setuptoolsSetuptools is a Python build backend and…
permissive · top 100 on PyPI
PyYAMLPyYAML parses and emits YAML 1.1 data format,…
permissive · top 100 on PyPI
pydanticPydantic validates Python data structures…
permissive · top 100 on PyPI
annotated-typesProvides reusable metadata objects for use with…
permissive · top 100 on PyPI
typing-inspectionProvides runtime tools to inspect and…
permissive · top 100 on PyPI
dynamodb-jsonConverts Python objects to and from DynamoDB's…
unclear · top 5,000 on PyPI
pynamodbPynamoDB provides a Pythonic ORM-like interface…
permissive · top 5,000 on PyPI
pynamodb-attributesProvides typed attribute classes for PynamoDB…
unclear · top 15,000 on PyPI
types-boto3-dynamodbProvides type annotations for boto3's DynamoDB…
permissive · top 5,000 on PyPI
pydynamodbPyDynamoDB is a DB API 2.0 client for Amazon…
permissive · top 15,000 on PyPI
dynamodb-encryption-sdkEncrypts and decrypts DynamoDB items…
permissive · top 15,000 on PyPI
mypy-boto3-dynamodbProvides type annotations and IDE…
permissive · top 5,000 on PyPI
types-aiobotocore-dynamodbProvides type annotations and IDE…
permissive · top 5,000 on PyPI
aws-cdk.aws-dynamodbProvides AWS CDK constructs for defining,…
permissive · top 15,000 on PyPI
cachelibCacheLib provides a unified API for interacting…
permissive · top 5,000 on PyPI