从Python dir()调用模块

前端之家收集整理的这篇文章主要介绍了从Python dir()调用模块前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_403_0@
简短的问题
是否可以调用python dir()函数检索的模块?

背景
我正在构建一个自定义测试运行器,并希望能够根据字符串过滤器选择要运行的模块.有关理想用法,请参阅下面的示例.

module_a.py

def not_mykey_dont_do_this():
    print 'I better not do this'

def mykey_do_something():
    print 'Doing something!'

def mykey_do_somethingelse():
    print 'Doing something else!'

module_b.py

import module_a
list_from_a = dir(module_a) # ['not_mykey_dont_do_this','mykey_do_something','mykey_do_somethingelse']

for mod in list_from_a:
    if(mod.startswith('mykey_'):
        # Run the module
        module_a.mod() # Note that this will *not* work because 'mod' is a string

产量

Doing something!
Doing something else!

解决方法

getattr(module_a,mod)()

getattr是一个内置函数,它接受对象和字符串,并返回属性.

原文链接:https://www.f2er.com/python/186387.html

猜你在找的Python相关文章