Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 376 Bytes

File metadata and controls

21 lines (13 loc) · 376 Bytes

MMint Utils

Utility functions and helpers for MMint lab.

Usage

Clone repo, then run pip install . to install.

Then, you can import and use helpers.

import mmint_utils

cfg = mmint_utils.load_cfg("config.yaml")
cfg["example"] = 100
mmint_utils.dump_cfg("config_2.yaml", cfg)

Tests

To run the tests, run python -m unittest from the tests directory.