dynamodb-json
dynamodb-json copied to clipboard
DynamoDB JSON util to load and dump strings of Dynamodb JSON format to python object and vise-versa
The expected behavior from a user when passing in how to parse a float via the parse_float method should be to parse the float as specified. Currently the default behavior...
```py from dynamodb_json import json_util as json dynamodb_json_string = "{'s': 'ACTIVE'}" d = json.loads(dynamodb_json_string) # {'s': 'ACTIVE'} # a fix is to pass the string as all upper case d...
dynamodb-json seems to automatically detect strings that look like datetimes and converts them to datetime objects. https://github.com/Alonreznik/dynamodb-json/blob/master/dynamodb_json/json_util.py#L54 This looks dangerous to me: Imagine having a text field whose content can...
Newer python versions forbid regular expression strings without the `r` suffix. No functional change.
BINARY datatype is converted to STRING based on the encoding can we identify it back as BINARY ``` >>> from dynamodb_json import json_util as unmarshall_util >>> source_json = {"binary_payload":{"B":"QmluYXJ5VmFsdWU="}} >>>...
Deprecation warning due to invalid escape sequences. Using raw strings or escaping them again helps in resolving this. Check https://github.com/asottile/pyupgrade/ for automatic fix of this. ``` find . -iname '*.py'...
It would be nice if this module provides a simple cli that can be run to read a json file and output dynamodb json
Hello, I am getting code vulnerability when I am using this library, I am working with dynamodb-json and pyawscron modules which are installing this module. I want to know where...