python從字符串解析方法名

  方法以下函數

import requests
func_name = 'get'
fn_obj = getattr(requests,func_name)
fn_obj('http://www.baidu.com')

若是是當前文件的方法ui

test.pyspa

import sys
def fn():
    print('hello world')
func_name = fn.__name__
fn_obj = getattr(sys.modules[__name__], func_name)
            # 根據函數名(func_name),得到函數對象
fn_obj()
            # hello world

這個的用處是code

有時咱們須要將一個文件的信息(類、函數及變量)保存到文件,咱們不能直接保存函數對象,而是將其轉化爲fn.__name__,問題來了,當咱們想經過讀取文件的形式從新配置這些類、函數時,該如何把這些字符串轉換爲對應的函數對象呢?對象

print(sys.modules[__name__])
    # <module '__main__' from '**/test.py'>

查看getattr的doc,blog

getattr(object, name[, default]) -> value. Get a named attribute from an object; getattr(x, ‘y’) is equivalent to x.y. When a default argument is given, it is returned when the attribute doesn’t exist; without it, an exception is raised in that case.

因此,getattr(sys.modules[__name__], func_name)的含義即是找到當前文件下名稱爲func_name的對象(類對象或者函數對象)。字符串

相關文章
相關標籤/搜索