latest updates:
right now, msg.body returns a generator since it's directly returning the data object from the uamqp message object.
It means to extract contents as a string I have to do next(msg..body).decode('utf-8')
body_as_Str would be a nice convenience to add ; there's on in EH too