An open API service indexing awesome lists of open source software.

https://github.com/banickn/klarfrs

A parser written in Rust to read klarf files
https://github.com/banickn/klarfrs

klarf parser python rust-lang semiconductor wafers

Last synced: 6 months ago
JSON representation

A parser written in Rust to read klarf files

Awesome Lists containing this project

README

          

# klarfrs
Klarfrs is a parser written in Rust to read klarf files as a python dictionary. Currently it only supports version 1.2.

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install klarfrs.

```bash
pip install klarfrs
```

## Usage

```python
import klarfrs
filename: str = "klarf.001" #
klarf_header: dict = klarfrs.parse(filename)
klarf_defects: dict = klarfrs.parse_defects(filename)
print(klarf_header)
print(klarf_defects)
```

## Contributing

Pull requests are welcome. For major changes, please open an issue first
to discuss what you would like to change.

Please make sure to update tests as appropriate.

## License

[MIT](https://choosealicense.com/licenses/mit/)