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 – string for 1st column

  • second – string for 2nd column

  • third – string for 3rd column

  • indent (int) – num. of indentations for 1st column display

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

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

Example:
>>> 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