Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.mage.ai/llms.txt

Use this file to discover all available pages before exploring further.

Python mecha

Importing custom Python code

When you’re writing code in Mage, you can import any other Python files using this format:
from [project_name].foo import bar
For example, if your project name is demo_project and you have the following folder structure:
demo_project/
|   pipelines/
|   utils/
|   |   helpers/
|   |   |   shared.py
|   |   |   __init__.py
|   |   __init__.py
You can write the following import statement to use functions in the demo_project/utils/helpers/shared.py file:
from demo_project.utils.helpers import shared