apsbits.utils.helper_functions#
Generic utility helper functions#
Register Bluesky IPython magics. |
|
Check if we are running in a Bluesky queueserver. |
|
|
Enable detailed debugging for Python exceptions in the IPython environment. |
Configure the Matplotlib backend based on the current environment. |
|
Detect if the current environment is a Jupyter Notebook. |
Functions
|
Enable detailed debugging for Python exceptions in the IPython environment. |
Get the current XMode debug level. |
|
Detect if the current environment is a Jupyter Notebook. |
|
Configure the Matplotlib backend based on the current environment. |
|
Register Bluesky IPython magics. |
|
Check if we are running in a Bluesky queueserver. |
- apsbits.utils.helper_functions.debug_python(xmode_level: str = 'Plain') None [source]#
Enable detailed debugging for Python exceptions in the IPython environment.
This function adjusts the xmode settings for exception tracebacks based on the provided xmode_level argument.
- Args:
- xmode_level (str): The level of detail for exception tracebacks.
Defaults to “Minimal”.
- apsbits.utils.helper_functions.get_xmode_level() str [source]#
Get the current XMode debug level.
- Returns:
The current XMode debug level.
- apsbits.utils.helper_functions.is_notebook() bool [source]#
Detect if the current environment is a Jupyter Notebook.
- Returns:
bool: True if running in a notebook (Jupyter notebook or qtconsole), False otherwise.
- apsbits.utils.helper_functions.mpl_setup() None [source]#
Configure the Matplotlib backend based on the current environment.
- For non-queueserver and non-notebook environments, attempts to use the ‘qtAgg’
backend.
- If ‘qtAgg’ is not available due to missing dependencies, falls back to the ‘Agg’
backend.
- Returns:
None