I am using boto library to read messages from SQS queue. My messages have text like this: { Command:XXXXXXXXXXX Key:XXXXXXX Input:XXXXXX} . Boto sends with base64 encoded and also reads it, so that if I read the message body then the text is there. But how can I read the message like
Command = input['Command'] Key = input_message['Key'].split(',') so that I can use those values for further processing...
I am quite new to Python also