I am looking for general guidance/instructions, not necessarily actual code. The answer might be: "you can't", or if doable, some instructions to what steps should be done. I have downloaded, manually, an Azure blob file (05.JSON) to local drive. The blob contains device telemetry messages in JSON format. If I view the raw blob, I cannot se those messages of course. How to retrieve the original messages JSON in Python? Or can I? I tried loading the blob into Pandas data frame using Pandas.read_csv("05.json"). It loaded it, but still in the blob raw structure i.e. cannot see the original messages in their JSON structure.
Update: I have just found out the the blob CONTENT-TYPE is application/octet-stream so I think that's why I am not seeing the expected JSON structure in the blob <