經過使用模塊名稱(字符串)來調用模塊的功能

在Python程序中,給定帶有函數名稱的字符串的最佳方法是什麼? 例如,假設我有一個模塊foo ,而且我有一個字符串,其內容爲"bar" 。 調用foo.bar()的最佳方法是什麼? html

我須要獲取函數的返回值,這就是爲何我不僅是使用eval 。 我想出瞭如何經過使用eval定義一個返回該函數調用結果的temp函數來執行此操做的方法,但我但願有一種更優雅的方法來執行此操做。 python


#1樓

只是一個簡單的貢獻。 若是咱們須要實例化的類在同一文件中,則能夠使用相似如下內容的東西: 函數

# 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()

例如: spa

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')

並且,若是不是課程: code

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

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

#2樓

建議的內容都沒有幫助我。 我確實發現了這一點。 orm

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

我正在使用python 2.66 htm

但願這能夠幫助 字符串


#3樓

給定一個字符串,帶有指向函數的完整python路徑,這就是我如何獲取所述函數的結果: get

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()

#4樓

答案(我但願)沒有人想要 string

評估行爲

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")()

#5樓

假設模塊foo與方法bar

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

您能夠將第2行和第3行縮短爲:

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

若是這對您的用例更有意義。

您能夠經過這種方式在類實例綁定的方法,模塊級方法,類方法上使用getattr ...清單繼續。

相關文章
相關標籤/搜索