Install the package from PyPI:
pip install dda-py
Download the appropriate DDA binary from here (select the correct one for your platform) and place it in the root directory of the
project.
Define the path to the binary in the dda_binary_path
variable in the init
function.
from dda_py import dda
dda.init(dda_binary_path="path/to/dda")
Q = dda.run_dda(
input_file="path/to/input/file",
output_file="path/to/output/file",
channel_list=[1, 2, 3],
)