environmentmodules
environmentmodules copied to clipboard
Python module for Environment Modules
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!')