How can I get a reference to a module from within that module? Also, how can I get a reference to the package containing that module?

link|improve this question

75% accept rate
feedback

3 Answers

up vote 26 down vote accepted
import sys
current_module = sys.modules[__name__]
link|improve this answer
feedback

You can get the name of the current module using __name__

The module reference can be found in the sys.modules dictionary.

See the Python documentation

link|improve this answer
2  
main is only the module name if it's run as a script: if you import the module this won't work. – mavnn Nov 4 '09 at 21:50
DOH! Typo, edited. – pkit Nov 4 '09 at 22:01
feedback

If you have a class in that module, then the __module__ property of the class is the module of the class.

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.