#lazy-imports

[ follow ]
#python
Python
fromInfoWorld
1 week ago

Speed boost your Python programs with new lazy imports

Lazy imports in Python create a proxy object that delays the actual import until the module is needed.
Python
fromZero To Mastery
5 months ago

[October 2025] Python Monthly Newsletter | Zero To Mastery

Python 3.14 brings notable performance gains while features like lazy imports, Hyperflask, and REPL syntax highlighting accelerate development and enable modern workflows.
fromPycoders
5 months ago

PyCoder's Weekly | Issue #705

Augment Code's powerful AI coding agent meets professional Python developers exactly where they are (in PyCharm, VS Code or even your terminal), delivering deep context into the Online Python training created by a community of experts. Give your team the Python Lazy Imports You Can Use Today There's a proposal for Python to natively support lazy importing starting in Python 3.15. However, there are techniques that allow you to use lazy importing now. This post shows you how.
Python
fromGrahamdumpleton
5 months ago

Lazy imports using wrapt - Graham Dumpleton

The actual reason wrapt was created was to be able to perform monkey patching of Python code. One key aspect of being able to monkey patch Python code is to be able to have the ability to wrap target objects in Python with a wrapper which acts as a transparent object proxy for the original object. By extending the object proxy type, one can then intercept access to the target object to perform specific actions.
Software development
[ Load more ]