Roughly calculates DynamoDB item size.
Project description
dynamo-size
Roughly calculates DynamoDB item size.
item = {
'Id': 123,
'Names': [
'foo',
'bar',
'qux',
# 500 more names
]
}
from dynamo_size import calculate_bytes, calculate_kbytes
calculate_bytes(item) # returns 2025
calculate_kbytes(item) # return 1.9775390625 (2025 / 1024)
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
dynamo-size-1.0.0.tar.gz
(1.7 kB
view hashes)