/environmentmodules

Python module for Environment Modules

Primary LanguagePythonApache License 2.0Apache-2.0

environmentmodules

Python interface for Environment Modules

Why?

I needed to test some modulefiles, and found the builtin python module insufficient, so I created this as a cleaner interface with a more reasonable build process.

Example

import environmentmodules as mod

# module load gcc/3.1.1
mod.load('gcc/3.1.1')

mod.switch('gcc', 'gcc/3.2.0')

mod.unload('gcc')

if mod.isloaded('gcc-5'):
    print('gcc-5 loaded successfully!')