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

Starting with a class like this:

class FooClass(object):
    @staticmethod
    def static_method(x):
        print x

normally, I would call the static method of the class with:

FooClass.static_method('bar')

Is it possible to invoke this static method having just the class name and the method name?

class_name = 'FooClass'
method_name = 'static_method'
share|improve this question
1  
Possible? Yes. A good idea? No. Only use when you absolutely must. – delnan Oct 3 '10 at 11:46
@delnan please, could you explain why? – systempuntoout Oct 3 '10 at 11:58
1  
For the same reason eval, exec, reflection in Java/.NET and similar features are frowned up: Potentially harder to debug, more prone to errors and security holes, slower, and atop of all this, it's rarely the easier or more elegant solution (quite the contrary, it's often harder to get this approach right than to do it properly), let alone necessary. – delnan Oct 3 '10 at 12:04

4 Answers

up vote 6 down vote accepted

You shouldn't mess with locals() as suggested in other answers. If you have your classname as a string and need to resolve it, use registry of some sort. A dictionary will work fine. E.g.

class FooClass(object):
    @staticmethod
    def static_method(x):
        print x

registry = {'FooClass':FooClass}

(I assume you will want to add many more classes to this registry)

the lookup then becomes almost trivial:

getattr(registry['FooClass'], 'static_method')("bar")
share|improve this answer
+1 for the most sane option. – delnan Oct 3 '10 at 12:17
Agreed. locals and globals should be the last resort. +1. – Manoj Govindan Oct 3 '10 at 12:20

If the class type is accessible from the current module, you can access the class in the globals() dict and the method using getattr:

class FooClass(object):
    @staticmethod
    def static_method(x):
        print x

class_name = 'FooClass'
method_name = 'static_method'

getattr(globals()[class_name], method_name)("test")
share|improve this answer
using globals() or locals() is an unnecessary hack – Ivo van der Wijk Oct 3 '10 at 11:58
@Ivo van der Wijk: So what do you propose instead? – AndiDog Oct 3 '10 at 12:00
@Ivo van der Wijk: Didn't see your answer. The OP's use case is obviously already a hack, so why not use the standard Python dictionaries to access the class? – AndiDog Oct 3 '10 at 12:03

Here is a crude way:

>>> class FooClass(object):
    @staticmethod
    def static_method(x):
        print x


>>> class_name = 'FooClass'
>>> method_name = 'static_method'
>>> getattr(locals().get(class_name), method_name)("bar")
bar

Breakup:

locals().get(class_name)

First, locate the class. In this case I'm using locals() as I know that the class is available in the local dictionary. This will fail if the class is not present in the local dictionary.

Next, find the method of the class.

getattr(locals().get(class_name), method_name)

This uses getattr().

Finally, call the method.

getattr(locals().get(class_name), method_name)("bar")
share|improve this answer

you can use getattr twice. the first time on the module that contains the class and the second time on the class itself

class_name = 'Foo'
method_name = 'Bar'

cls = getattr(mod, clsname)
method = getattr(cls, method_name)
method(args)

This is not as flexible as building a registry (which you can do with a decorator) but if you are not going to do that, than this is a far better alternative than messing with the stack and stylistically, cleaner than messing with sys.modules.

Note that a module can import itself with no adverse effects. so the classes don't have to be in a different module for this to work.

share|improve this answer
Your observation about how it would be better to use getattr() on the module object is well taken, because one will likely have it handy anyway. I tried to write my slightly earlier answer so it would work while making as few assumptions as possible. – martineau Oct 3 '10 at 13:04

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.