modules.md
1> **Источник:** https://python-all.ru/3.3/library/modules.html2>3> «Документация Python на русском» – неофициальный перевод официальной документации Python: версии от 2.6 до 3.16, полнотекстовый поиск, английский оригинал рядом с переводом. Эта Markdown-версия страницы предназначена для работы с LLM: вставьте её в ChatGPT, Claude или Cursor.45---67# 30. Импорт модулей89Модули, описанные в этой главе, предоставляют новые способы импорта других модулей Python и перехватчики для настройки процесса импорта.1011Полный список модулей, описанных в этой главе:1213- [30.1. `imp` – Доступ к внутреннему устройству `import`](https://python-all.ru/3.3/library/imp.html)1415 - [30.1.1. Примеры](https://python-all.ru/3.3/library/imp.html#examples)16- [30.2. `zipimport` – Импорт модулей из Zip-архивов](https://python-all.ru/3.3/library/zipimport.html)1718 - [30.2.1. Объекты zipimporter](https://python-all.ru/3.3/library/zipimport.html#zipimporter-objects)19 - [30.2.2. Примеры](https://python-all.ru/3.3/library/zipimport.html#examples)20- [30.3. `pkgutil` – Утилита расширения пакетов](https://python-all.ru/3.3/library/pkgutil.html)21- [30.4. `modulefinder` – Поиск модулей, используемых скриптом](https://python-all.ru/3.3/library/modulefinder.html)2223 - [30.4.1. Пример использования `ModuleFinder`](https://python-all.ru/3.3/library/modulefinder.html#example-usage-of-modulefinder)24- [30.5. `runpy` – Поиск и выполнение модулей Python](https://python-all.ru/3.3/library/runpy.html)25- [30.6. `importlib` – Реализация `import`](https://python-all.ru/3.3/library/importlib.html)2627 - [30.6.1. Введение](https://python-all.ru/3.3/library/importlib.html#introduction)28 - [30.6.2. Функции](https://python-all.ru/3.3/library/importlib.html#functions)29 - [30.6.3. `importlib.abc` – Абстрактные базовые классы, связанные с импортом](https://python-all.ru/3.3/library/importlib.html#module-importlib.abc)30 - [30.6.4. `importlib.machinery` – Импортёры и хуки путей](https://python-all.ru/3.3/library/importlib.html#module-importlib.machinery)31 - [30.6.5. `importlib.util` – Вспомогательный код для импортёров](https://python-all.ru/3.3/library/importlib.html#module-importlib.util)32