vote up 3 vote down star
1

Suppose myapp/foo.py contains:

def info(msg):
    caller_name = ????
    print '[%s] %s' % (caller_name, msg)

And myapp/bar.py contains:

import foo
foo.info('Hello') # => [myapp.foo] Hello

I want caller_name to be set to the __name__ attribute of the calling functions' module (which is 'myapp.foo') in this case. How can this be done?

flag
Assume that some other entry point script invokes bar.py .. and thus caller_name cannot be __main__ – Sridhar Ratnakumar Jul 8 at 0:36
Are you sure your example code is correct? Shouldn't the body of myapp/bar.py be: import foo; foo.info('Hello') # => [myapp.bar] Hello – too much php Jul 8 at 0:38
Right, I fixed the code. – Sridhar Ratnakumar Jul 8 at 0:47

2 Answers

vote up 7 vote down check

Check out the inspect module:

inspect.stack() will return the stack information.

Inside a function, inspect.stack()[1] will return your caller's stack. From there, you can get more information about the caller's function name, module, etc.

See the docs for details:

http://docs.python.org/library/inspect.html

Also, Doug Hellmann has a nice writeup of the inspect module in his PyMOTW series:

http://blog.doughellmann.com/2007/11/pymotw-inspect.html

EDIT: Here's some code which does what you want, I think:

def info(msg):
    frm = inspect.stack()[1]
    mod = inspect.getmodule(frm[0])
    print '[%s] %s' % (mod.__name__, msg)
link|flag
So how do you get the __name__ attribute of this module using the inspect module? For example, how do I get back myapp.foo (not myapp/foo.py) in my above example? I already tried using the inspect module before posting at SO. – Sridhar Ratnakumar Jul 8 at 3:38
Just updated the answer. Does that work on your end? – ars Jul 8 at 4:12
1  
Be aware that this will interact strangely with import hooks, won't work on ironpython, and may behave in surprising ways on jython. It's best if you can avoid magic like this. – Glyph Jul 9 at 11:24
vote up 1 vote down

I don't recommend do this, but you can accomplish your goal with the following method:

def caller_name():
    frame=inspect.currentframe()
    frame=frame.f_back.f_back
    code=frame.f_code
    return code.co_filename

Then update your existing method as follows:

def info(msg):
    caller = caller_name()
    print '[%s] %s' % (caller, msg)
link|flag
Filename is not the same as __name__ – Sridhar Ratnakumar Jul 8 at 3:28

Your Answer

Get an OpenID
or

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