python Python Inspect

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Python Inspect相关的知识,希望对你有一定的参考价值。

# Inspect the modules in the package and loop through them.
members = inspect.getmembers(sys.modules[package_name], inspect.ismodule)
for name, data in members:
    if name == 'models.py':
        data.MyClass.run_function()

以上是关于python Python Inspect的主要内容,如果未能解决你的问题,请参考以下文章

18转载python中inspect模块

python模块inspect.py

python inspect.stack() 的简单使用

python Python.Logging.Inspect

python Python Inspect

Python类型注解(inspect模块)