Load is a modern alternative to Python's import system, inspired by the simplicity of Go and Groovy. It provides automatic package installation, intelligent caching, and magic import syntax.
Table of Contents
# Install with Poetry
poetry add load
# Or install from PyPI
pip install loadimport load
# Magic import - everything through dot notation
json_lib = load.json
os_lib = load.os
sys_lib = load.sys
# Auto-install external packages
requests_lib = load.requests # Automatically installs requests
pandas_lib = load.pd # Automatically installs pandasFor detailed documentation, please refer to the individual sections in the sidebar.