使用其名称(字符串)调用模块的函数

时间:2008-08-06 03:36:09

标签: python object

在Python程序中给定带有函数名称的字符串调用函数的最佳方法是什么。例如,假设我有一个模块foo,我有一个内容为"bar"的字符串。致电foo.bar()的最佳方式是什么?

我需要获取函数的返回值,这就是为什么我不只是使用eval。我想通过使用eval来定义一个返回该函数调用结果的临时函数,但我希望有更优雅的方法来实现它。

16 个答案:

答案 0 :(得分:1711)

假设模块foo使用方法bar

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

就此而言,第2行和第3行可以压缩为:

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

如果这对您的用例更有意义。您可以在类实例绑定方法,模块级方法,类方法上以这种方式使用getattr ...列表继续。

答案 1 :(得分:455)

locals()["myfunction"]()

globals()["myfunction"]()

locals返回包含当前本地符号表的字典。 globals返回带有全局符号表的字典。

答案 2 :(得分:282)

帕特里克的解决方案可能是最干净的。 如果您还需要动态选择模块,可以将其导入为:

module = __import__('foo')
func = getattr(module, 'bar')
func()

答案 3 :(得分:93)

只是一个简单的贡献。如果我们需要实例的类在同一个文件中,我们可以使用这样的东西:

# Get class from globals and create an instance
m = globals()['our_class']()

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

# Call it
func()

例如:

class A:
    def __init__(self):
        pass

    def sampleFunc(self, arg):
        print('you called sampleFunc({})'.format(arg))

m = globals()['A']()
func = getattr(m, 'sampleFunc')
func('sample arg')

# Sample, all on one line
getattr(globals()['A'](), 'sampleFunc')('sample arg')

而且,如果不是一个班级:

def sampleFunc(arg):
    print('you called sampleFunc({})'.format(arg))

globals()['sampleFunc']('sample arg')

答案 4 :(得分:82)

给定一个字符串,带有函数的完整python路径,这就是我获取所述函数结果的方法:

import importlib
function_string = 'mypackage.mymodule.myfunc'
mod_name, func_name = function_string.rsplit('.',1)
mod = importlib.import_module(mod_name)
func = getattr(mod, func_name)
result = func()

答案 5 :(得分:39)

根据Python programming FAQ的最佳答案是:

functions = {'myfoo': foo.bar}

mystring = 'myfoo'
if mystring in functions:
    functions[mystring]()
  

这种技术的主要优点是字符串不需要匹配函数的名称。这也是用于模拟案例构造的主要技术

答案 6 :(得分:36)

答案(我希望)没有人想要

Eval like behavior

getattr(locals().get("foo") or globals().get("foo"), "bar")()

为什么不添加自动导入

getattr(
    locals().get("foo") or 
    globals().get("foo") or
    __import__("foo"), 
"bar")()

如果我们有额外的词典,我们想检查

getattr(next((x for x in (f("foo") for f in 
                          [locals().get, globals().get, 
                           self.__dict__.get, __import__]) 
              if x)),
"bar")()

我们需要更深入

getattr(next((x for x in (f("foo") for f in 
              ([locals().get, globals().get, self.__dict__.get] +
               [d.get for d in (list(dd.values()) for dd in 
                                [locals(),globals(),self.__dict__]
                                if isinstance(dd,dict))
                if isinstance(d,dict)] + 
               [__import__])) 
        if x)),
"bar")()

答案 7 :(得分:22)

对于它的价值,如果你需要将函数(或类)名称和应用程序名称作为字符串传递,那么你可以这样做:

myFnName  = "MyFn"
myAppName = "MyApp"
app = sys.modules[myAppName]
fn  = getattr(app,myFnName)

答案 8 :(得分:18)

试试这个。虽然这仍然使用eval,但它只使用它来从当前上下文中召唤函数。然后,您可以根据需要使用真正的功能。

对我来说,主要的好处是你会在召唤函数时得到任何与eval相关的错误。然后,当您致电时,您将只能 与功能相关的错误。

def say_hello(name):
    print 'Hello {}!'.format(name)

# get the function by name
method_name = 'say_hello'
method = eval(method_name)

# call it like a regular function later
args = ['friend']
kwargs = {}
method(*args, **kwargs)

答案 9 :(得分:14)

没有任何建议对我有帮助。我确实发现了这一点。

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

我正在使用python 2.66

希望这有帮助

答案 10 :(得分:4)

尽管getattr()是一种优雅的方法(速度大约快7倍),但是您可以从函数(本地,类方法,模块)获得返回值,而eval的优雅程度为x = eval('foo.bar')()。而且,当您实施一些错误处理时,就会非常安全(可以将相同的原理用于getattr)。带有模块导入和类的示例:

# import module, call module function, pass parameters and print retured value with eval():
import random
bar = 'random.randint'
randint = eval(bar)(0,100)
print(randint) # will print random int from <0;100)

# also class method returning (or not) value(s) can be used with eval: 
class Say:
    def say(something='nothing'):
        return something

bar = 'Say.say'
print(eval(bar)('nice to meet you too')) # will print 'nice to meet you' 

当模块或类不存在(典型错误或更好的错误)时,会引发NameError。如果函数不存在,则引发AttributeError。这可以用来处理错误:

# try/except block can be used to catch both errors
try:
    eval('Say.talk')() # raises AttributeError because function does not exist
    eval('Says.say')() # raises NameError because the class does not exist
    # or the same with getattr:
    getattr(Say, 'talk')() # raises AttributeError
    getattr(Says, 'say')() # raises NameError
except AttributeError:
    # do domething or just...
    print('Function does not exist')
except NameError:
    # do domething or just...
    print('Module does not exist')

答案 11 :(得分:1)

getattr从对象中按名称调用方法。 但是此对象应该是调用类的父类。 父类可以通过super(self.__class__, self)

获得
class Base:
    def call_base(func):
        """This does not work"""
        def new_func(self, *args, **kwargs):
            name = func.__name__
            getattr(super(self.__class__, self), name)(*args, **kwargs)
        return new_func

    def f(self, *args):
        print(f"BASE method invoked.")

    def g(self, *args):
        print(f"BASE method invoked.")

class Inherit(Base):
    @Base.call_base
    def f(self, *args):
        """function body will be ignored by the decorator."""
        pass

    @Base.call_base
    def g(self, *args):
        """function body will be ignored by the decorator."""
        pass

Inherit().f() # The goal is to print "BASE method invoked."

答案 12 :(得分:1)

我之前也遇到过类似的问题,就是将字符串转换为函数。 但我不能使用 eval()ast.literal_eval(),因为我不想立即执行此代码。

例如我有一个字符串 "foo.bar",我想将它分配给 x 作为函数名而不是字符串,这意味着我可以通过 x() ON DEMAND< 调用该函数/strong>。

这是我的代码:

str_to_convert = "foo.bar"
exec(f"x = {str_to_convert}")
x()

对于你的问题,你只需要在foo前加上你的模块名.{}如下:

str_to_convert = "bar"
exec(f"x = foo.{str_to_convert}")
x()

警告!!! eval()exec() 都是危险方法,请确认安全。 警告!!! eval()exec() 都是危险方法,请确认安全。 警告!!! eval()exec() 都是危险方法,请确认安全。

答案 13 :(得分:0)

由于这个问题How to dynamically call methods within a class using method-name assignment to a variable [duplicate]被标记为与此重复,因此我在此处发布了相关答案:

场景是,一个类中的一个方法要动态调用同一类上的另一个方法,我在原始示例中添加了一些细节,从而提供了更广泛的场景和清晰度:

class MyClass:
    def __init__(self, i):
        self.i = i

    def get(self):
        func = getattr(MyClass, 'function{}'.format(self.i))
        func(self, 12)   # This one will work
        # self.func(12)    # But this does NOT work.


    def function1(self, p1):
        print('function1: {}'.format(p1))
        # do other stuff

    def function2(self, p1):
        print('function2: {}'.format(p1))
        # do other stuff


if __name__ == "__main__":
    class1 = MyClass(1)
    class1.get()
    class2 = MyClass(2)
    class2.get()
  

输出(Python 3.7.x)

     

功能1:12

     

功能2:12

答案 14 :(得分:0)

在python3中,可以使用__getattribute__方法。请参阅以下带有列表方法名称字符串的示例:

func_name = 'reverse'

l = [1, 2, 3, 4]
print(l)
>> [1, 2, 3, 4]

l.__getattribute__(func_name)()
print(l)
>> [4, 3, 2, 1]

答案 15 :(得分:-5)

这是一个简单的答案,例如,这将使您可以清除屏幕。下面有两个示例,分别是eval和exec,它们在清洁后将在顶部显示0(如果您使用Windows,请将clear更改为cls,那么Linux和Mac用户将按原样离开)或分别执行它。

eval("os.system(\"clear\")")
exec("os.system(\"clear\")")