I am trying to connect to a azure blob storage to retireve a file while trying to implement chunking using pandas. My question is if i use
pandas.readcsv('az://mycontainerpath',storage_options={acc_name, cred_string})
where the storage options are in env vars
to read the file instead of the
azure-storage-blobs libraries
CcontainerClient(creds and details to establish connection)
data = container_client.download_blob()
pandas.readcsv(data)
how do i understand the security implementation of how they process the credentials or do i need to even consider that point?.
Because azure-storage-blobs is maintained by Microsoft compared to adls which is done by individual parties?
I am a bit newto this so wanted some advice on what things i should be concerned about in same.What are the things one needs to consider when working with these.