bahamas.utils
Attributes
Functions
|
Read an excel file into a pandas DataFrame, stripping trailing/leading |
|
Read TOML-formatted file |
Module Contents
- bahamas.utils.SDLC_stages = ['Concept', 'Requirement', 'Design', 'Implementation', 'Testing', 'Install and Maintenance'][source]
- bahamas.utils.human_error_modes = ['D1', 'D2', 'C', 'OC', 'D1C', 'D1OC', 'D2C', 'D2OC', 'O', 'D1O', 'D2O'][source]
- bahamas.utils.ODC_types = ['Algorithm', 'Assignment', 'Checking', 'Documentation', 'Function', 'Interface',...[source]
- bahamas.utils.read_excel(*args, **kwargs)[source]
Read an excel file into a pandas DataFrame, stripping trailing/leading whitespace from string values (including the column index if it holds strings)
- Parameters:
*args – Arguments passed directly to pandas.read_excel
**kwargs –
Arguments passed directly to pandas.read_excel
- Returns:
The parsed excel data with string values stripped
- Return type:
pandas.DataFrame