首先,您可以从中检索有关函数签名的结构化数据
__annotations__
:
def callme(a: int) -> bool:
return a > 1
print(callme.__annotations__)
# prints {'a': <class 'int'>, 'return': <class 'bool'>}
从这里,您可以使用一个函数,将其转换为所需的类型。
最新消息:这是一种简陋且可能并非通用的方法:
import typing
from typing import Callable
def callme(a: int) -> bool:
return a > 1
def get_function_type(fn):
annotations = typing.get_type_hints(fn)
return_type = annotations.get('return', None)
arg_types = []
for k, v in annotations.items():
if k != 'return':
arg_types.append(v)
return Callable[arg_types, return_type]
def example(f: get_function_type(callme)):
pass
print(get_function_type(callme))
# prints 'typing.Callable[[int], bool]'
print(get_function_type(example))
# prints 'typing.Callable[[typing.Callable[[int], bool]], NoneType]'