Welcome to nitdms

A Python package for reading TDMS files generated by National Instruments LabVIEW

https://img.shields.io/pypi/v/nitdms

You can install the package from PyPI:

pip install nitdms

Use tab-completion to access the properties and data in a TDMS file:

>>> from nitdms import TdmsFile
>>> tf = TdmsFile(<file>)
>>> data = tf.<group>.<channel>.data
>>> data
array([...])

Documentation