mypy

Package — Code QualityPython 3.8+Intermediate

Static type checker for Python type annotations

Quick Info

Documentation
Official Docs
Python Version
3.8+
Dependencies
mypy-extensions, typing-extensions, tomli
Install
pip install mypy

Learn by Difficulty

Quick Example

python
# Install: pip install mypy
import mypy

# Basic mypy usage
print(f"Using mypy")
# See documentation for detailed examples

mypy is a third-party package. Static type checker for Python type annotations. Install with: pip install mypy

Try in Playground

Tags

packagecode-qualitytype-checkerstatic-analysis

Related Items