How do I get a list of all python modules available?
I don't want modules of modules. Just a basic list of all modules available in sys.path
.
help('modules')
is not the solution, because I want it available as a variable and it imports those modules, which has side effects.
Edit: With side effects I mean libraries like kivy of http://kivy.org/, which make use of the fact, that code is executed once you import it.