Import Tips

Learn how to import anything more efficiently in Python.

We'll cover the following...

Import wisely

Modules are the building blocks of the Python ecosystem. A typical Python program imports dozens of modules, but we should always try to minimize how many modules we import.

If nothing in a file depends on some module, that module shouldn’t be imported. Importing a module takes time that we could better use for ...