python typing check types - Serbipunk/notes GitHub Wiki
types.FunctionType
dynamically create a class function
def test_func(): print 'wow'
dynf = types.FunctionType(test_func.func_code, {})
dynf()
https://stackoverflow.com/a/10303539
typing check εͺζ―ζη€Ίγ
numpy typing
https://stackoverflow.com/a/35688036
https://docs.python.org/3/library/typing.html
example1
from typing import Dict, List
def func(a: List[str]):