Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 573 Bytes

File metadata and controls

25 lines (16 loc) · 573 Bytes

Helper Utilities

This directory contains helper functions and utilities used across multiple examples.

Files

helpers.py

Common utility functions used by example scripts.

Key Functions:

  • w(): Text wrapping function for pretty-printing long outputs
  • Other formatting and display utilities

Usage

from docs.examples.helper import w

# Wrap long text for display
print(w(long_text))

Note

This is a utility directory to support other examples. The helpers are not part of the core Mellea API but are useful for demonstration purposes.