write_to_console
cauldron.step.write_to_console()
Writes the specified message to the console stdout without including
it in the notebook display.
Background
This function will write strings to the console without them appearing
in the display. This is useful for logging information to the console
that would clutter the display.
Basic Usage
For example, we may want to track memory used by a DataFrame in the
console for reference, but not display that information within the
notebook:
import cauldron as cd
import pandas as pd
import some_library
data_frame: pd.DataFrame = some_libray.load_data()
bytes_used = data_frame.memory_usage.sum()
cd.step.write_to_console(f'Loaded DataFrame using {bytes_used} bytes.')