Hi,
I am trying to find a way to read tdms files and convert them to parquet format with Python notebooks on Azure. My tdms files are in a Azure contains and and a file path which is a URL. I tried to use nptdms python package to read it as followed:
from nptdms import TdmsFile
tdms_file = TdmsFile.read("path_to_file.tdms")
My problem is that it seems that path_to_file in TdmsFile does not take URL as a file path.
I appreciate greatly if somebody can share how tdms files can generally be loaded and convert to parquet on Azure. I know that I can convert tdms files on premises and then move them to Azure, but it's not optimal. I want to do it directly on Azure.
Best regards
malam67