I have a the following strings defined which are specifying a python module name, a python class name and a static method name.
module_name = "com.processors"
class_name = "FileProcessor"
method_name = "process"
I would like to invoke the static method specified by method_name variable.
How do i achieve this in python 2.7+