SYMBOL INDEX (116 symbols across 11 files) FILE: wasabi/markdown.py class MarkdownRenderer (line 6) | class MarkdownRenderer: method __init__ (line 9) | def __init__(self, no_emoji: bool = False): method text (line 18) | def text(self) -> str: method add (line 22) | def add(self, content: str): method table (line 29) | def table( method title (line 57) | def title(self, level: int, text: str, emoji: Optional[str] = None) ->... method list (line 68) | def list(self, items: Iterable[str], numbered: bool = False) -> str: method link (line 83) | def link(self, text: str, url: str) -> str: method code_block (line 92) | def code_block(self, text: str, lang: str = "") -> str: method code (line 101) | def code(self, text: str) -> str: method bold (line 109) | def bold(self, text: str) -> str: method italic (line 117) | def italic(self, text: str): method _wrap (line 125) | def _wrap(self, text, marker): FILE: wasabi/printer.py class Printer (line 19) | class Printer(object): method __init__ (line 20) | def __init__( method counts (line 69) | def counts(self) -> Counter: method good (line 75) | def good( method fail (line 97) | def fail( method fail (line 108) | def fail( method fail (line 118) | def fail( method warn (line 139) | def warn( method info (line 160) | def info( method text (line 181) | def text( method divider (line 240) | def divider( method table (line 277) | def table(self, data: Union[Collection, Dict], **kwargs): method row (line 292) | def row(self, data: Collection, **kwargs): method loading (line 304) | def loading(self, text: str = "Loading..."): method _spinner (line 325) | def _spinner(self, text: str = "Loading..."): method _get_msg (line 331) | def _get_msg( FILE: wasabi/tables.py function table (line 14) | def table( function row (line 99) | def row( function _get_max_widths (line 151) | def _get_max_widths(data, header, footer, max_col): FILE: wasabi/tests/test_jupyter.py function test_jupyter (line 12) | def test_jupyter(): FILE: wasabi/tests/test_markdown.py function test_markdown (line 6) | def test_markdown(): function test_markdown_table_aligns (line 18) | def test_markdown_table_aligns(): FILE: wasabi/tests/test_printer.py function test_printer (line 13) | def test_printer(): function test_printer_print (line 43) | def test_printer_print(): function test_printer_print_timestamp (line 52) | def test_printer_print_timestamp(): function test_printer_no_pretty (line 59) | def test_printer_no_pretty(): function test_printer_custom (line 69) | def test_printer_custom(): function test_color_as_int (line 90) | def test_color_as_int(): function test_bg_color (line 100) | def test_bg_color(): function test_bg_color_as_int (line 111) | def test_bg_color_as_int(): function test_color_and_bc_color (line 122) | def test_color_and_bc_color(): function test_printer_counts (line 133) | def test_printer_counts(): function test_printer_spaced (line 147) | def test_printer_spaced(): function test_printer_divider (line 154) | def test_printer_divider(): function test_printer_loading (line 168) | def test_printer_loading(hide_animation): function test_printer_loading_raises_exception (line 184) | def test_printer_loading_raises_exception(): function test_printer_loading_no_print (line 195) | def test_printer_loading_no_print(): function test_printer_log_friendly (line 202) | def test_printer_log_friendly(): function test_printer_log_friendly_prefix (line 211) | def test_printer_log_friendly_prefix(): function test_printer_none_encoding (line 222) | def test_printer_none_encoding(monkeypatch): function test_printer_no_print_raise_on_exit (line 229) | def test_printer_no_print_raise_on_exit(): FILE: wasabi/tests/test_tables.py function data (line 12) | def data(): function header (line 17) | def header(): function footer (line 22) | def footer(): function fg_colors (line 27) | def fg_colors(): function bg_colors (line 32) | def bg_colors(): function test_table_default (line 36) | def test_table_default(data): function test_table_header (line 44) | def test_table_header(data, header): function test_table_header_footer_divider (line 52) | def test_table_header_footer_divider(data, header, footer): function test_table_aligns (line 60) | def test_table_aligns(data): function test_table_aligns_single (line 68) | def test_table_aligns_single(data): function test_table_widths (line 76) | def test_table_widths(): function test_row_single_widths (line 83) | def test_row_single_widths(): function test_table_multiline (line 89) | def test_table_multiline(header): function test_row_fg_colors (line 101) | def test_row_fg_colors(fg_colors): function test_row_bg_colors (line 111) | def test_row_bg_colors(bg_colors): function test_row_fg_colors_and_bg_colors (line 121) | def test_row_fg_colors_and_bg_colors(fg_colors, bg_colors): function test_row_fg_colors_and_bg_colors_log_friendly (line 134) | def test_row_fg_colors_and_bg_colors_log_friendly(fg_colors, bg_colors): function test_row_fg_colors_and_bg_colors_log_friendly_prefix (line 144) | def test_row_fg_colors_and_bg_colors_log_friendly_prefix(fg_colors, bg_c... function test_row_fg_colors_and_bg_colors_supports_ansi_false (line 157) | def test_row_fg_colors_and_bg_colors_supports_ansi_false(fg_colors, bg_c... function test_colors_whole_table_with_automatic_widths (line 166) | def test_colors_whole_table_with_automatic_widths( function test_colors_whole_table_only_fg_colors (line 189) | def test_colors_whole_table_only_fg_colors(data, header, footer, fg_colo... function test_colors_whole_table_only_bg_colors (line 209) | def test_colors_whole_table_only_bg_colors(data, header, footer, bg_colo... function test_colors_whole_table_with_supplied_spacing (line 229) | def test_colors_whole_table_with_supplied_spacing( function test_colors_whole_table_with_supplied_widths (line 253) | def test_colors_whole_table_with_supplied_widths( function test_colors_whole_table_with_single_alignment (line 277) | def test_colors_whole_table_with_single_alignment( function test_colors_whole_table_with_multiple_alignment (line 301) | def test_colors_whole_table_with_multiple_alignment( function test_colors_whole_table_with_multiline (line 325) | def test_colors_whole_table_with_multiline(data, header, footer, fg_colo... function test_colors_whole_table_log_friendly (line 344) | def test_colors_whole_table_log_friendly(data, header, footer, fg_colors... function test_colors_whole_table_log_friendly_prefix (line 362) | def test_colors_whole_table_log_friendly_prefix( function test_colors_whole_table_supports_ansi_false (line 383) | def test_colors_whole_table_supports_ansi_false( function test_colors_whole_table_color_values (line 402) | def test_colors_whole_table_color_values(data, header, footer, fg_colors... FILE: wasabi/tests/test_traceback.py function tb (line 9) | def tb(): function test_traceback_printer (line 13) | def test_traceback_printer(tb): function test_traceback_printer_highlight (line 19) | def test_traceback_printer_highlight(tb): function test_traceback_printer_custom_colors (line 25) | def test_traceback_printer_custom_colors(tb): function test_traceback_printer_only_title (line 33) | def test_traceback_printer_only_title(tb): function test_traceback_dot_relative_path_tb_base (line 39) | def test_traceback_dot_relative_path_tb_base(tb): function test_traceback_tb_base_none (line 45) | def test_traceback_tb_base_none(tb): function test_traceback_printer_no_tb (line 51) | def test_traceback_printer_no_tb(): function test_traceback_printer_custom_tb_range (line 57) | def test_traceback_printer_custom_tb_range(): function test_traceback_printer_custom_tb_range_start (line 63) | def test_traceback_printer_custom_tb_range_start(): FILE: wasabi/tests/test_util.py function test_color (line 6) | def test_color(): function test_wrap (line 16) | def test_wrap(): function test_format_repr (line 27) | def test_format_repr(): function test_locale_escape (line 56) | def test_locale_escape(text, non_ascii): function test_diff_strings (line 62) | def test_diff_strings(): function test_diff_strings_with_symbols (line 69) | def test_diff_strings_with_symbols(): FILE: wasabi/traceback_printer.py class TracebackPrinter (line 11) | class TracebackPrinter(object): method __init__ (line 12) | def __init__( method __call__ (line 52) | def __call__(self, title: str, *texts, **settings) -> str: method _get_traceback (line 69) | def _get_traceback(self, tb, highlight): method _format_traceback (line 89) | def _format_traceback(self, path, line, fn, text, i, count, highlight): method _format_user_error (line 107) | def _format_user_error(self, text, i, highlight): FILE: wasabi/util.py class MESSAGES (line 16) | class MESSAGES(object): function color (line 51) | def color( function wrap (line 83) | def wrap(text: Any, wrap_max: int = 80, indent: int = 4) -> str: function format_repr (line 104) | def format_repr(obj: Any, max_len: int = 50, ellipsis: str = "...") -> str: function diff_strings (line 121) | def diff_strings( function get_raw_input (line 159) | def get_raw_input( function locale_escape (line 175) | def locale_escape(string: Any, errors: str = "replace") -> str: function can_render (line 187) | def can_render(string: str) -> bool: function supports_ansi (line 201) | def supports_ansi() -> bool: