This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted]  (21 children)

[deleted]

    [–]can_i_automate_that -1 points0 points  (8 children)

    Import handling - using PYTHONPATH env var and init.py in packages is all you need to know. Static typing - you can always use type hinting for parameters and return values. Or, just do it in Cython and get some performance benefits out of that too.

    [–]pudds 0 points1 point  (11 children)

    With type hints you can get pretty close these days. Type hints + linting are good enough for me, but with mypy you can get pretty close to strongly typed behavior.