Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the best way to go about calling a function given a string with the function's name in a Python program. For example, let's say that I have a module foo, and I have a string whose contents are "bar". What is the best way to go about calling foo.bar()?

I need to get the return value of the function, which is why I don't just use eval. I figured out how to do it by using eval to define a temp function that returns the result of that function call, but I'm hoping that there is a more elegant way to do this.

share|improve this question

7 Answers

up vote 254 down vote accepted

Assuming module 'foo' with method 'bar':

import foo
methodToCall = getattr(foo, 'bar')
result = methodToCall()

As far as that goes lines 2 and three can be compressed to:

result = getattr(foo, 'bar')()

if that makes more sense for your use case. You can use getattr in this fashion on class instance bound methods, module-level methods, classmethods... the list goes on.

share|improve this answer
locals()["myfunction"]()

or

globals()["myfunction"]()

locals returns a dictionary with a current local symbol table. globals returns a dictionary with global symbol table.

share|improve this answer

Patrick's solution is probably the cleanest. If you need to dynamically pick up the module as well, you can import it like:

m = __import__ ('foo')
func = getattr(m,'bar')
func()
share|improve this answer
3  
You should not call import in this fashion, as "It mainly exists so that you can replace it with another function that has a compatible interface, in order to change the semantics of the import statement." (see Python 2.5.2 Library reference). Do "import foo" followed by "m = foo", instead. – Patrick Johnmeyer Sep 12 '08 at 15:33
17  
I do not understand that last comment. __import__ has its own right and the next sentence in the mentioned docs says: "Direct use of __import__() is rare, except in cases where you want to import a module whose name is only known at runtime". So: +1 for the given answer. – hoffmaje May 5 '12 at 9:33

Just a simple contribution. If the class that we need to instance is in the same file, we can use something like this:

# Get it from globals and call it
m = globals()['our_class']()

# Get the function that we need to call, and call it
func = getattr(m, 'function_name')
func()

Hope this helps someone.

share|improve this answer

For what it's worth, if you needed to pass the function (or class) name and app name as a string, then you could do this:

myFnName  = "MyFn"
myAppName = "MyApp"
app = sys.modules[myAppName]
fn  = getattr(app,myFnName)
share|improve this answer

none of what was suggested helped me. I did discover this though.

<object>.__getattribute__(<string name>)(<params>)

I am using python 2.66

Hope this helps

share|improve this answer

Well, there's:

string="bar"
exec"a=foo."+string+"()"

or maybe

exec "a=foo.%s()"%string

I'm not sure how much more elegant that is, however. But you'll be hardpressed to find a way to "execute" a string without exec or eval.

share|improve this answer
30  
I didn't downvote you, but I'm guessing you pay for your last sentence: "But you'll be hardpressed to find a way to execute a string without exec or eval". It ranks up there with "640kb should be enough for everyone". – tzot May 7 '09 at 23:15
7  
Eval is evil... – ThiefMaster Aug 19 '10 at 0:44
1  
Using eval is fine as long as you are aware of security loopholes when you evaluate a string. For best practices though, everyone avoids eval, as more readable and better approach is available. – Ravi Kumar Nov 26 '12 at 15:12

protected by Bo Persson Jan 6 at 23:06

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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