D
Doug Kearns
Is this the best/simplest way to generate a module list?
python -c 'from pydoc import help; help("modules")'
Thanks,
Doug
python -c 'from pydoc import help; help("modules")'
Thanks,
Doug
I am not sure if this is what you want, but how about:Doug said:Is this the best/simplest way to generate a module list?
python -c 'from pydoc import help; help("modules")'
Thanks,
Doug
I am not sure if this is what you want, but how about:
For python 2.4, try:
python -c "import sys; print sorted(sys.modules)"
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.