juanchoflorez
juanchoflorez
> I have made a tool to enhance `ast` with metadata from `mypy`: > > ```python > import sys > > a = 1 > b = 2 > print(a...
Does this allow to get the AST with type annotations using mypy? I would like to get the AST with type annotations using a python API and this package looks...
> Yes, like this using mypy > > ```python > # test.py > def test(a: int, b: float)->int: > print(a) > return a+b > ``` > > ``` > mypyq...