I need to read the .mdb file in python which is in azure blob storage and export dataframe as as csv, I am able to read the csv but i am not able to read the .mdb file. Is there any other method to do so, Please feel free to give suggestion other than python.
What i tried:
from azure.storage.blob import BlockBlobService
import pandas as pd
import tables
STORAGEACCOUNTNAME= <storage_account_name>
STORAGEACCOUNTKEY= <storage_account_key>
LOCALFILENAME= <local_file_name>
CONTAINERNAME= <container_name>
BLOBNAME= <blob_name>
blob_service=BlockBlobService(account_name=STORAGEACCOUNTNAME,account_key=STORAGEACCOUNTKEY)
blob_service.get_blob_to_path(CONTAINERNAME,BLOBNAME,test.mdb)
# LOCALFILE is the file path
dataframe_blobdata = pd.read_csv(test.mdb)