Hacker News new | ask | show | jobs
by tweakimp 180 days ago
In the near future we will use lazy imports :) https://peps.python.org/pep-0810/
1 comments

This can't come soon enough. Python is great for CLIs until you build something complex and a simple --help takes seconds. It's not something easily worked around without making your code very ugly.
It's not that hard to handle --help and --version separately before importing anything.
You could, but it doesn't really seem all that useful? I mean, when are you ever going to run this in a hot loop?