# STDF_Reader **Repository Path**: johnny-jiang/STDF_Reader ## Basic Information - **Project Name**: STDF_Reader - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-01-11 - **Last Updated**: 2022-01-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # STDF Reader This library is meant to 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. ### Installation pip install stdf ### Usage from stdf.stdf_reader import Reader() stdf = Reader() stdf.load_stdf_file(stdf_file='input_file.std') for rec_name, header, body in stdf: # iterate stdf file record by record, starting from 'FAR' record. if rec_name == 'FAR': # body is a dictionary with field name as keys. cpu_type = body['CPU_TYPE'] ### Documentation Visit https://pythonhosted.org/stdf/ ### Limitation - STDF V4 format only. - Python 3.3 and above.