I have Azure container where i keep some files. I need to access them using python code I did same thing in JAVA but i am unable to replicate it in Python
//This is java code for same.
CloudBlobContainer Con = new CloudBlobContainer("Some SAS URI");
CloudBlockBlob blob1 = Con.getBlockBlobReference(fileName);
blob1.downloadToFile(filePath+fileName+userName);