Python package for interacting with DNV GL Software's Application Version Manager.
- List installed applications
- See which application version is marked as default
- Get path to application executables
Based on parsing the Application Version Manager XML file with application details.
Install the package from Packagr using pip
pip install avm --extra-index-url https://api.packagr.app/EYvhW6SyL/ --disable-pip-version-checkImport avm and start using it.
import avmGet the executable path of the 'wadam' application. Default version.
from avm import exe_path
path = exe_path('wadam')Get the executable path of the 'wadam' application. Default version.
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.
avm-listAll versions
avm-list --all-versionsToggle logger level so that debug-level info is piped to console.
avm-list --all-versions --logging-level debugNo documentation yet. Sorry!