modules.md
1> **Источник:** https://python-all.ru/3.5/library/modules.html2>3> «Документация Python на русском» – неофициальный перевод официальной документации Python: версии от 2.6 до 3.16, полнотекстовый поиск, английский оригинал рядом с переводом. Эта Markdown-версия страницы предназначена для работы с LLM: вставьте её в ChatGPT, Claude или Cursor.45---67# 31. Импорт модулей89Модули, описанные в этой главе, предоставляют новые способы импорта других модулей Python и перехватчики для настройки процесса импорта.1011Полный список модулей, описанных в этой главе:1213- [31.1. `zipimport` – Импорт модулей из Zip-архивов](https://python-all.ru/3.5/library/zipimport.html)1415 - [31.1.1. Объекты zipimporter](https://python-all.ru/3.5/library/zipimport.html#zipimporter-objects)16 - [31.1.2. Примеры](https://python-all.ru/3.5/library/zipimport.html#examples)17- [31.2. `pkgutil` – Утилита расширения пакетов](https://python-all.ru/3.5/library/pkgutil.html)18- [31.3. `modulefinder` – Поиск модулей, используемых скриптом](https://python-all.ru/3.5/library/modulefinder.html)1920 - [31.3.1. Пример использования `ModuleFinder`](https://python-all.ru/3.5/library/modulefinder.html#example-usage-of-modulefinder)21- [31.4. `runpy` – Поиск и выполнение модулей Python](https://python-all.ru/3.5/library/runpy.html)22- [31.5. `importlib` – Реализация `import`](https://python-all.ru/3.5/library/importlib.html)2324 - [31.5.1. Введение](https://python-all.ru/3.5/library/importlib.html#introduction)25 - [31.5.2. Функции](https://python-all.ru/3.5/library/importlib.html#functions)26 - [31.5.3. `importlib.abc` – Абстрактные базовые классы, связанные с импортом](https://python-all.ru/3.5/library/importlib.html#module-importlib.abc)27 - [31.5.4. `importlib.machinery` – Импортёры и перехватчики путей](https://python-all.ru/3.5/library/importlib.html#module-importlib.machinery)28 - [31.5.5. `importlib.util` – Вспомогательный код для импортёров](https://python-all.ru/3.5/library/importlib.html#module-importlib.util)29