This program converts EXF formatted files from CMLibs.Zinc to MBF XML.
pip install exf2mbfxml
exf2mbfxmlconverter /path/to/input.exf
For more information use the help:
exf2mbfxmlconverter --help
When developing install the required packages for running the tests with:
pip install .[test]
Then run the tests with:
python -m unittest discover -s tests
from the repository root directory.
To see the coverage statistics for the package run:
coverage run --source=exf2mbfxml -m unittest discover -s tests
For a nice HTML rendering of the coverage statistics run:
coverage html -d html.cover
To view the HTML coverage output:
python -m http.server 9432 -d html.cover
Then, in a web browser navigate to http://localhost:9432