vote up 2 vote down star
2

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?

flag

65% accept rate

3 Answers

vote up 8 vote down check
import sys
current_module = sys.modules[__name__]
link|flag
vote up 2 vote down

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|flag
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 at 21:50
DOH! Typo, edited. – pkit Nov 4 at 22:01
vote up 2 vote down

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

link|flag

Your Answer

Get an OpenID
or

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