importlib
Stdlib — IntrospectionPython 2.0+Advanced
Programmatic import system: dynamic imports, reload, hooks
Quick Info
- Documentation
- Official Docs
- Python Version
- 2.0+
- Dependencies
- None — Python Standard Library
- Install
Included with Python
Learn by Difficulty
Quick Example
python
import importlib print(f"Module: importlib") print(f"Contents: {dir(importlib)[:10]}")
The importlib module is part of Python's standard library. Programmatic import system: dynamic imports, reload, hooks.
Try in PlaygroundTags
stdlibintrospectionmetaprogramming