Aws-dynamodb-parser

Latest version: v0.1.3

Safety actively analyzes 624429 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

0.1.3

Merge pull request 4 from gridsmartercities/automate-workflow

Automate workflow

0.1.2

Users can now parse the results from a query without having to loop over each dynamo object.

py
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.

0.1.1

Basic parsing of all DynamoDB datatypes introduced.

Links

Releases

Has known vulnerabilities

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.