Search⌘ K

importlib Package

Explore how to use Python's importlib module for dynamic module imports and creating custom importers. Understand the transition from the deprecated imp module and practice importing modules from various sources including source files and third-party tools.

We'll cover the following...

Overview of importlib

Python provides the importlib package as part of its standard library of modules. Its purpose is to provide the implementation of Python’s import ...