This is a Python library to read VAMAS files (.vms). [1]
Installation via pip:
$ pip install vamasfrom vamas import Vamas
vamas_data = Vamas('path/to/vamas-file.vms')The created object has two attributes, header and blocks, which are
instances of VamasHeader and a list of VamasBlock, respectively.
See the documentation for all attributes of those classes.
| [1] | W. A. Dench, L. B. Hazell, M. P. Seah, Surf. Interface Anal. 1988, 13, 63-122. https://doi.org/10.1002/sia.740130202 |