gpt4 book ai didi

python - 如何在不导入 python 文件的情况下获取类和函数的列表

转载 作者:太空狗 更新时间:2023-10-30 02:26:31 24 4
gpt4 key购买 nike

我有一个 python 文件,其中定义了一些类和函数:

class A(object):
def __init__(self, an_arg, a_default_arg=None):
pass

def doStuff(an_other_arg, an_other_default_arg=None):
pass

我想得到这个文件中所有类和函数的列表。 (他们的名字和参数定义就够了)

现在,我知道您可以使用 __import__(module_descriptor)inspect 来执行此操作,但这不是一个选项,因为我正在扫描的文件来自不受信任的来源。

我的第一 react 是尝试创建一个安全的环境来导入它们,但根据其他 stackoverflow 问题,这似乎是不可能的。

最佳答案

您可以使用 ast模块来解析源文件,而不实际执行任何代码。然后你可以遍历节点树来获取函数和类名/参数。

import ast

def show_info(functionNode):
print("Function name:", functionNode.name)
print("Args:")
for arg in functionNode.args.args:
#import pdb; pdb.set_trace()
print("\tParameter name:", arg.arg)


filename = "untrusted.py"
with open(filename) as file:
node = ast.parse(file.read())

functions = [n for n in node.body if isinstance(n, ast.FunctionDef)]
classes = [n for n in node.body if isinstance(n, ast.ClassDef)]

for function in functions:
show_info(function)

for class_ in classes:
print("Class name:", class_.name)
methods = [n for n in class_.body if isinstance(n, ast.FunctionDef)]
for method in methods:
show_info(method)

结果:

Function name: doStuff
Args:
Parameter name: an_other_arg
Parameter name: an_other_default_arg
Class name: A
Function name: __init__
Args:
Parameter name: self
Parameter name: an_arg
Parameter name: a_default_arg

关于python - 如何在不导入 python 文件的情况下获取类和函数的列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44698193/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com