提问人:ricree 提问时间:8/6/2008 最后编辑:Mateen Ulhaqricree 更新时间:6/5/2022 访问量:1130225
使用模块的名称(字符串)调用模块的函数
Calling a function of a module by using its name (a string)
问:
如何使用带有函数名称的字符串调用函数?例如:
import foo
func_name = "bar"
call(foo, func_name) # calls foo.bar()
答:
给定一个模块,其方法为:foo
bar
import foo
bar = getattr(foo, 'bar')
result = bar()
getattr
同样可以用于类实例绑定方法、模块级方法、类方法......这样的例子不胜枚举。
评论
foo
globals()
methodToCall = globals()['bar']
根据 Patrick 的解决方案,要动态获取模块,请使用以下命令导入它:
module = __import__('foo')
func = getattr(module, 'bar')
func()
评论
importlib.import_module
__import__
importlib.import_module
使用
locals(),
它返回一个带有当前本地符号表的字典:locals()["myfunction"]()
使用
globals(),
它返回一个带有全局符号表的字典:globals()["myfunction"]()
评论
值得一提的是,如果您需要将函数(或类)名称和应用名称作为字符串传递,那么您可以这样做:
myFnName = "MyFn"
myAppName = "MyApp"
app = sys.modules[myAppName]
fn = getattr(app,myFnName)
评论
handler = getattr(sys.modules[__name__], myFnName)
只是一个简单的贡献。如果我们需要实例化的类在同一个文件中,我们可以使用如下内容:
# 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')
评论
这些建议都没有帮助我。不过,我确实发现了这一点。
<object>.__getattribute__(<string name>)(<params>)
我正在使用 python 2.66
希望这会有所帮助
评论
self.__getattribute__('title')
self.title
self.__getattribute__('title')
毕竟在任何情况下都不起作用(不知道为什么),但确实如此。所以,也许最好改用func = getattr(self, 'title'); func();
getattr()
getattr
。
给定一个字符串,其中包含一个函数的完整 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()
评论
__import__
答案(我希望)没有人想要
类似 Eval 的行为
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")()
评论
根据 Python 编程常见问题解答,最佳答案是:
functions = {'myfoo': foo.bar}
mystring = 'myfoo'
if mystring in functions:
functions[mystring]()
此技术的主要优点是字符串不需要与函数的名称匹配。这也是用于模拟案例结构的主要技术
试试这个。虽然它仍然使用 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)
评论
eval
getattr(__module__, method_name)
作为这个问题 如何使用方法名称赋值来动态调用类中的方法 [duplicate] 标记为重复的变量 [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
评论
这是一个简单的答案,例如,这将允许您清除屏幕。下面有两个示例,分别使用 eval 和 exec,它们在清理后会在顶部打印 0(如果您使用的是 Windows,请更改为 ,Linux 和 Mac 用户保持原样)或分别执行它。clear
cls
eval("os.system(\"clear\")")
exec("os.system(\"clear\")")
评论
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."
虽然 getattr() 是优雅的(速度大约快 7 倍),但你可以从函数(local、class 方法、模块)中获取返回值,eval 和 .当你实现一些错误处理时,那么非常安全(同样的原则可以用于 getattr)。模块导入和类示例:x = eval('foo.bar')()
# 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')
我之前遇到过类似的问题,即将字符串转换为函数。但是我不能使用 eval()
或 ast.literal_eval(),
因为我不想立即执行此代码。
例如,我有一个字符串,我想将其作为函数名称而不是字符串分配给它,这意味着我可以通过按需调用函数。"foo.bar"
x
x()
这是我的代码:
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()
都是危险的方法,您应该确认安全性。
评论
eval()
可以在这里代替 ,并且可能会使代码更具可读性:只需使用相同的结果即可。exec()
x = eval(str_to_convert)
在 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]
评论
还没有人提到:operator.attrgetter
>>> from operator import attrgetter
>>> l = [1, 2, 3]
>>> attrgetter('reverse')(l)()
>>> l
[3, 2, 1]
>>>
评论