Metadata-Version: 2.1
Name: parser_stdf
Version: 0.0.7
Summary: parse stdf files
Home-page: https://github.com/akc14/parser_stdf/
Author: andrew.khoh
Author-email: andrew.khoh@globalfoundries.com
License: Apache Software License 2.0
Keywords: stdf,csv
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

parser_stdf
================

<!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! -->

## Install

`pip install parser_stdf`

## How to use

``` python
from parser_stdf.core import Content, Stdf

def read_file(f='./testdata'):
    with open(f, 'rb') as f:
        d = f.read()
    return d

file_content = read_file()
file_name = 'testdata'

stdf = Stdf(file_content=file_content, file_name=file_name)
c = Content(stdf=stdf)

#c.wxy # for missing w,x,y extracted from eFuse readings
```


