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

In python, say I have a string that contains the name of a class function that I know a particular object will have, how can I invoke it?

That is:

obj = MyClass() # this class has a method doStuff()
func = "doStuff"
# how to call obj.doStuff() using the func variable?
share|improve this question
1  
I'm curious about why you would need to do this. This sounds like you may be doing something the hard way. Could you elaborate on your situation? – JoshD Oct 17 '10 at 3:06
I have a cli app where I want to accept commands from the command line, but don't want to do something like: "if command = 'doThing' then obj.doThing() elseif command = 'someOtherThing' ... and so on. I want to add methods to the handler class and then they'd automatically be available on the cli – Roy Tang Oct 17 '10 at 5:07
is that alright to do that? what situations would this approach not a good idea? i'm in a similar situation too, but i'm not sure if i'll go this way. somehow, i feel that it would be more clearer if i explicitly use branching instead. what do you think? thanks! – ultrajohn Sep 3 '12 at 11:59

1 Answer

up vote 12 down vote accepted

Use "getattr": http://docs.python.org/library/functions.html?highlight=getattr#getattr

obj = MyClass()
try:
    func = getattr(obj, "dostuff")
    func()
except AttributeError:
    print "dostuff not found"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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