TGTGInsighttelegram intelligenceLIVE / telegram public index
Post content
帖子内容
https://peps.python.org/pep-0810/ Lazy imports to drop in Python 3.15 TL;DR : instead of from package import func you could do lazy from package import func, which will only load the package when you use func for the first time. This will improve memory usage, startup time and unnecessary CPU usage. a win-win !