What I'm trying to do would look like this in the command line:

>>> import mymodule
>>> names = dir(mymodule)

How can I get a reference to all the names defined in mymodule from within mymodule itself?

Something like this:

# mymodule.py
names = dir(__thismodule__)
link|improve this question

feedback

3 Answers

up vote 22 down vote accepted

Just use globals()

globals() — Return a dictionary representing the current global symbol table. This is always the dictionary of the current module (inside a function or method, this is the module where it is defined, not the module from which it is called).

http://docs.python.org/library/functions.html#globals

link|improve this answer
feedback

As previously mentioned, globals gives you a dictionary as opposed to dir() which gives you a list of the names defined in the module. The way I typically see this done is like this:

import sys
dir(sys.modules[__name__])
link|improve this answer
I was going to add a comment that this wouldn't work for the 'main' module (which is what the module run at the terminal is called) because that does not seem to be listed in sys.modules - but it does indeed work :) – markm Jul 28 '11 at 1:07
feedback

Also check out the built-in inspect module. It can be very handy.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.