Skip to content

Read a raw STDF file and iterate between records, easily.

License

Notifications You must be signed in to change notification settings

jasonshih/STDF_Reader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Read a raw STDF file and iterate between records, easily.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages