Skip to content

Latest commit

 

History

History
54 lines (40 loc) · 1.45 KB

File metadata and controls

54 lines (40 loc) · 1.45 KB

🔥 Load - Modern Python Import Alternative

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.

📚 Documentation Overview

Table of Contents

🚀 Quick Start

# Install with Poetry
poetry add load

# Or install from PyPI
pip install load

💪 Usage Example

import 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 pandas

📚 Detailed Documentation

For detailed documentation, please refer to the individual sections in the sidebar.

🔗 Related Resources