我想把一个 C++代码转化成一个 python 的 stub 文件(.pyi )
大概就是把
int foo(int bar);
转化成
def foo(bar: int) -> int : ...
然后需要自定义一些规则。
请问这方面有什么工具或框架吗?