Python package for interacting with DNV GL Software's Application Version Manager.
Based on parsing the Application Version Manager XML file with application details.
Install the package from Packagr using pip
bash
pip install avm --extra-index-url https://api.packagr.app/EYvhW6SyL/ --disable-pip-version-check
Import avm and start using it.
python
import avm
Get the executable path of the 'wadam' application. Default version.
```python from avm import exe_path
path = exe_path('wadam') ```
Get the executable path of the 'wadam' application. Default version.
```python from avm import exe_path
path = exe_path('wadam', version='9.4.3') ```
List details about the applications and versions registered in Application Version Manager.
Only default application versions.
bash
avm-list
All versions
bash
avm-list --all-versions
Toggle logger level so that debug-level info is piped to console.
bash
avm-list --all-versions --logging-level debug
No documentation yet. Sorry!