Johann wrote: > Thanx. Do you know how to check what modules are installed? E.g. I > would like to check if PYANA or other xml modules are installed. try: import somemodule print "somemodule installed" except ImportError: print "somemodule not installed"