Load can be installed using several methods:
poetry add loadpip install loadFor development purposes, clone the repository and install in development mode:
git clone https://github.com/pyfunc/load.git
cd load
poetry install- Python 3.8+
- pip
- Poetry (recommended for development)
Load supports several environment variables for configuration:
LOAD_CACHE_SIZE: Maximum cache size in bytesLOAD_AUTO_PRINT: Enable/disable auto-print globally (1/0)LOAD_PRINT_LIMIT: Character limit for auto-printLOAD_NO_INSTALL: Disable automatic package installation (1/0)
To update Load to the latest version:
poetry add load@latest # If using Poetry
pip install --upgrade load # If using pip