digitout
Seek data structures of your Python application.
Example
Given following code:
def foobar() -> 123:
pass
How can we access 123 starting from object foobar?
...
import digitout
digitout(foobar) # shows interactive UI

Shortest answer:
target.__annotations__['return']: 123