I am writing a python script to query data from an Azure Table Storage.
The data which I want to extract is of type Binary (The info is serialized and stored)
When I run the code using entity['BodyChunk01] I get the value back as
'BodyChunk01': <azure.data.tables._entity.EntityProperty object at 0x0DDFFB10>
(The name of the column is BodyChunk01)
and when I use entity['BodyChunk01'].value as mentioned in another question on stackoverflow, it returns the deserialized json data but I want the actual serialized value that is stored as you can see in the screenshot below