Can I use mypy to type check my existing Python code?
Mypy supports most Python features and idioms, and many large Pythonprojects are using mypy successfully. Code that uses complexintrospection or metaprogramming may be impractical to type check, butit should still be possible to use static typing in other parts of acodebase that are less dynamic.