STDF Reader 0.2.3

travis_ license

Read the binary STDF file (.std), which is the standard test data format commonly used by Automated Test Equipment such as Teradyne, Advantest and LTX testers. This library is meant to make reading such a file as easy as reading a text file.

STDF References

To utilize this library to its full extent, it is important to understand how the structure of an STDF file is.

Installation

Install the usual way.

pip install stdf

Usage

from stdf import Reader
std = Reader(stdf_file='input_file.std')

for rec_name, header, body in std:
    if rec_name == 'FAR':
        # body is a dictionary with field name as keys.
        cpu_type = body['CPU_TYPE']

Documentation

Limitation

  • STDF V4 format only.
  • Python 3.3 and above.