I am retrieving a DynamoDB item using Python and AWS Lambda. I am having difficulty parsing the value that the response contains.
For example, this is returned for response['Item']['GUID']
{u'S': u'8898f389-c282-4c4f-952a-87a0fbbb6d70'}
In the end, I just want the actual value without the extraneous information DynamoDB inserts. How do you best handle DynamoDB's JSON formatting using Python 2.7?