# Module: utils Utility functions for the test project. ## Symbols ### load_config def load_config(config_path: str) Load configuration from a JSON file. **Type:** Function **Metrics:** - Fan-in: 0 - Fan-out: 2 ### save_config def save_config(config: dict, config_path: str) Save configuration to a JSON file. **Type:** Function **Metrics:** - Fan-in: 0 - Fan-out: 2 ### get_file_size def get_file_size(filepath: str) Get the size of a file in bytes. **Type:** Function **Metrics:** - Fan-in: 0 - Fan-out: 1 ### format_bytes def format_bytes(size: int) Format bytes into a human-readable string. **Type:** Function **Metrics:** - Fan-in: 0 - Fan-out: 0 ## Dependencies ### Imports - json - os ### Outbound Modules ### Inbound Modules ## Integrations ## Usage Examples ```python from utils import load_config result = load_config(config_path) ``` ```python from utils import save_config result = save_config(config, config_path) ``` ```python from utils import get_file_size result = get_file_size(filepath) ``` ```python from utils import format_bytes result = format_bytes(size) ```