#!/usr/bin/python
import Sword

mgr=Sword.SWMgr()

for module in mgr.getModules().values():
    print "%s -> %s"%(module.Name(),module.Description())

