I have some data in the queues which I want to access in my python code.
I am using the following code:
from azure.storage.queue import QueueService
queue_service = QueueService(account_name='', account_key='')
messages = queue_service.get_messages('queue', num_messages=5)
for message in messages:
print(message.id)
print(message.content)
But the output of the content is in the form of some coded message.
How do I decode it?