Module: terminal.prompts

Terminal input and output prompts.

3 Classes

class IPython.terminal.prompts.Prompts(shell: TerminalInteractiveShell)

Bases: object

__init__(shell: TerminalInteractiveShell)
class IPython.terminal.prompts.ClassicPrompts(shell: TerminalInteractiveShell)

Bases: Prompts

class IPython.terminal.prompts.RichPromptDisplayHook(*args: t.Any, **kwargs: t.Any)

Bases: DisplayHook

Subclass of base display hook using coloured prompt

write_format_data(format_dict: Dict[str, str], md_dict: Dict[Any, Any] | None = None) None

Write the format data dict to the frontend.

This default version of this method simply writes the plain text representation of the object to sys.stdout. Subclasses should override this method to send the entire format_dict to the frontends.

Parameters:
  • format_dict (dict) – The format dict for the object passed to sys.displayhook.

  • md_dict (dict (optional)) – The metadata dict to be associated with the display data.

write_output_prompt()

Write the output prompt.

The default implementation simply writes the prompt to sys.stdout.