Metadata-Version: 2.1
Name: vamas
Version: 0.1.1
Summary: Python package to read vamas (.vms) files
Home-page: https://github.com/matkrin/vamas
License: BSD-3-Clause
Author: Matthias Krinninger
Author-email: matkrin@protonmail.com
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Scientific/Engineering
Provides-Extra: docs
Provides-Extra: test
Project-URL: Documentation, https://matkrin.github.io/vamas
Description-Content-Type: text/x-rst

vamas
=====

This is a Python library to read `VAMAS`_ files (.vms). [1]_

.. _`VAMAS`: https://doi.org/10.1002/sia.740130202


Installing
----------

Installation via `pip`_:

.. code-block:: bash

    $ pip install vamas

.. _pip: https://pip.pypa.io/en/stable/


Example Usage
-------------

.. code-block:: python
    
  from 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.

.. _`documentation`: https://matkrin.github.io/vamas

|

----

.. [1] W. A. Dench, L. B. Hazell, M. P. Seah, *Surf. Interface Anal.* **1988**,
  *13*, 63-122.
  `<https://doi.org/10.1002/sia.740130202>`_

