Releases: gridsmartercities/aws-dynamodb-parser
Releases · gridsmartercities/aws-dynamodb-parser
Release v0.1.3
Merge pull request #4 from gridsmartercities/automate-workflow
Automate workflow
List parsing and stopped in-place parsing
Users can now parse the results from a query without having to loop over each dynamo object.
response = dynamodb.query(...)
items = response.get("Items", [])
# before
parsed = [parse(item) for item in items]
# after
parsed = parse(items)
Also stopped the parse
function modifying the source dynamo object in-place. this may be re-added with a flag in the future but as it stands it was an unintended side effect and could potentially cause issues for users in the future.
Initial Release
Basic parsing of all DynamoDB datatypes introduced.