As a Data / ML Engineer, a lot of my work is enforcing schemas and making sure data is correct. That is why typechecking is an invaluable tool for Data / ML Engineers as well as runtime checking tools like pydantic
To incrementally adopt typehints in a project here are the three levels and the associated pyproject.toml
configuration for mypy
.
The idea is that in conversation with your team, you add each level when the team is ready to adopt the increasing costs and strictness. An example timeline could be 3 months at each level.
- The first level allows some typechecking for early adopters that start adding it to the code base but it is not enforced.
- The second level does require some work, but should be a manageable amount to adopt by focusing on only functions and method signatures.
- The last level is more detailed and requires more work, but the bulk of the work is covered in level 2.
The first level allows some typechecking for early adopters that start adding it to the code base but it is not enforced.
With the following settings:
[tool.mypy]
exclude = ["tests/", "tasks\\.py"]
pretty = true
show_error_codes = true
show_column_numbers = true
show_error_context = true
ignore_missing_imports = true
follow_imports = "silent"
# Level 1
disallow_incomplete_defs = true
# Level 2
disallow_untyped_defs = false
# Level 3
strict = false
Existing code with no typehints stays fine 👍
def forecast(x, m = 1, b = 0):
"""Forecast using linear regression."""
return m * x + b
Fully typed code works too 👍
def forecast(x: float, m: float = 1, b: float = 0) -> float:
"""Forecast using linear regression."""
return m * x + b
Partially typed code will not work
def forecast(x: float, m = 1, b = 0) -> float: # Some arguments are not typed
"""Forecast using linear regression."""
return m * x + b
def forecast(x: float, m: float = 1, b: float = 0): # Missing Return type
"""Forecast using linear regression."""
return m * x + b
The second level does require some work, but should be a manageable amount to adopt by focusing on only functions and method signatures.
With the following settings:
[tool.mypy]
exclude = ["tests/", "tasks\\.py"]
pretty = true
show_error_codes = true
show_column_numbers = true
show_error_context = true
ignore_missing_imports = true
follow_imports = "silent"
# Level 1
disallow_incomplete_defs = true
# Level 2
disallow_untyped_defs = true
# Level 3
strict = false
Only fully typed functions and methods works 👍
def forecast(x: float, m: float = 1, b: float = 0) -> float:
"""Forecast using linear regression."""
return m * x + b
Untyped and partially typed code will not work
def forecast(x, m = 1, b = 0):
"""Forecast using linear regression."""
return m * x + b
def forecast(x: float, m = 1, b = 0) -> float: # Some arguments are not typed
"""Forecast using linear regression."""
return m * x + b
def forecast(x: float, m: float = 1, b: float = 0): # Missing Return type
"""Forecast using linear regression."""
return m * x + b
The last level is more detailed and requires more work, but the bulk of the work is covered in level 2.
With the following settings:
[tool.mypy]
exclude = ["tests/", "tasks\\.py"]
pretty = true
show_error_codes = true
show_column_numbers = true
show_error_context = true
ignore_missing_imports = true
follow_imports = "silent"
# Level 1
disallow_incomplete_defs = true
# Level 2
disallow_untyped_defs = true
# Level 3
strict = true
For the full specific of strict
then MyPy Strict Options.
This pretty much disallows the use of Any
amongst some other corner cases, but disallowing Any
is a big one on the way to becoming a fully typed codebase.
Checkout the MyPy Existing Code Guide for more details.
https://youtype.github.io/boto3_stubs_docs/
# install type annotations only for boto3
python -m pip install boto3-stubs
# install boto3 type annotations
# for ec2, s3, rds, lambda, sqs, dynamo and cloudformation
python -m pip install 'boto3-stubs[essential]'
# or install annotations for services you use
python -m pip install 'boto3-stubs[s3,dynamodb,lambda]'
# or install annotations in sync with boto3 version
python -m pip install 'boto3-stubs[boto3]'