gpt4 book ai didi

python - 如何使用函数注解来验证函数调用类型

转载 作者:太空宇宙 更新时间:2023-11-03 14:56:05 25 4
gpt4 key购买 nike

我最近才发现有一种叫做函数注释的东西,但我不太确定如何使用它。这是我目前所拥有的:

def check_type(f):
def decorated(*args, **kwargs):
counter=0
for arg, type in zip(args, f.__annotations__.items()):
if not isinstance(arg, type[1]):
msg = 'Not the valid type'
raise ValueError(msg)
counter+=1

return f(*args, **kwargs)
return decorated

@check_type
def foo(a: int, b: list, c: str): #a must be int, b must be list, c must be str
print(a,b,c)

foo(12, [1,2], '12') #This works

foo(12, 12, 12) #This raises a value error just as I wanted to

foo(a=12, b=12, c=12) #But this works too:(

如您所见,我正在尝试使用注释和装饰器检查 abc 的类型如果类型不正确,则引发 ValueError。当我在调用时不使用关键字参数时它工作正常。但是,如果我使用关键字参数,则不会检查类型。我正在努力让它发挥作用,但我没有运气。

我的代码不支持关键字参数。因为我没有任何东西可以检查它。我也不知道如何检查它。这是我需要帮助的地方。

我也是这样做的:

def check_type(f):
def decorated(*args, **kwargs):
for name, type in f.__annotations__.items():
if not isinstance(kwargs[name], type):
msg = 'Not the valid type'
raise ValueError(msg)

return f(*args, **kwargs)
return decorated

#But now they have to be assigned using keyword args
#so only foo(a=3,b=[],c='a') works foo(3,[],'a') results in a keyerror
#How can I combine them?

最佳答案

正如 Paul 所建议的,最好使用 bind Signature的方法|对象(位于 inspect )绑定(bind) *args**kwargs将提供给 f然后检查类型是否匹配:

from inspect import signature
from typing import get_type_hints

def check_range(f):
def decorated(*args, **kwargs):
counter=0
# use get_type_hints instead of __annotations__
annotations = get_type_hints(f)
# bind signature to arguments and get an
# ordered dictionary of the arguments
b = signature(f).bind(*args, **kwargs).arguments
for name, value in b.items():
if not isinstance(value, annotations[name]):
msg = 'Not the valid type'
raise ValueError(msg)
counter+=1

return f(*args, **kwargs)
return decorated

您的第一个案例实际上是随机成功的。 dict s 在 Python 中有随机顺序 < 3.6当您再次启动 Python 解释器时,这很可能会改变,这意味着 zip ping 你做的不是确定性的。

而不是遍历 f.__annotations__ , 通过 get_type_hints 获取然后,通过 b.items() 获取名称和值(这是一个 OrderedDict 并保证顺序)用 name 索引它.

关于python - 如何使用函数注解来验证函数调用类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42476009/

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