Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

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.