status_print

bapsflib._hdf.utils.hdfoverview.status_print(first: str, second: str, third: str, indent=0, onetwo_pad=' ', second_tab=55)

Stylistic status printing for HDFOverview.

Parameters:
  • first (str) – string for 1st column

  • second (str) – string for 2nd column

  • third (str) – string for 3rd column

  • indent (int, optional) – number of indentations for 1st column display (DEFAULT 0)

  • onetwo_pad (str, optional) – one character string for pad style between 1st and 2nd column (DEFAULT ' ')

  • second_tab (int, optional) – number of characters between start of string and start of 2nd column (DEFAULT 55)

Examples

>>> status_print('one', 'two', 'three', second_tab=15)
one            two    three
>>> status_print('one', 'two', 'three', second_tab=15,
...              indent=2, onetwo_pad='~')
|   +-- one    two    three