Skip to content

Releases: gridsmartercities/aws-dynamodb-parser

Release v0.1.3

11 Nov 14:20
eae2cee
Compare
Choose a tag to compare

Merge pull request #4 from gridsmartercities/automate-workflow

Automate workflow

List parsing and stopped in-place parsing

05 Oct 10:31
36ff37e
Compare
Choose a tag to compare

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

12 Apr 10:17
Compare
Choose a tag to compare

Basic parsing of all DynamoDB datatypes introduced.