reporters
#
Holds functions for output rendering in conda
Functions#
|
Retrieves the render function to use |
|
Used to render output in conda |
|
Retrieve the progress bar for the currently configured reporter backend |
Retrieve progress bar context manager to use with registered reporter |
|
|
Retrieve spinner to use with registered reporter |
|
Display a "yes/no" confirmation input |
Attributes#
- logger#
- render(data, style: str | None = None, **kwargs) None #
Used to render output in conda
The output will either be rendered as "json" or normal "console" output to stdout. This function allows us to configure different reporter backends for these two types of output.
- get_progress_bar(description: str, **kwargs) conda.plugins.types.ProgressBarBase #
Retrieve the progress bar for the currently configured reporter backend
- get_progress_bar_context_manager() contextlib.AbstractContextManager #
Retrieve progress bar context manager to use with registered reporter
- get_spinner(message: str, fail_message: str = 'failed\n') conda.plugins.types.SpinnerBase #
Retrieve spinner to use with registered reporter