Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 502 Bytes

README.md

File metadata and controls

23 lines (14 loc) · 502 Bytes

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!')