applied-ai-018 commited on
Commit
b3b0cd3
·
verified ·
1 Parent(s): 5d8eda7

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__init__.py +172 -0
  2. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__main__.py +280 -0
  3. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-310.pyc +0 -0
  4. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-310.pyc +0 -0
  5. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-310.pyc +0 -0
  6. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-310.pyc +0 -0
  7. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-310.pyc +0 -0
  8. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-310.pyc +0 -0
  9. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-310.pyc +0 -0
  10. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-310.pyc +0 -0
  11. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-310.pyc +0 -0
  12. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-310.pyc +0 -0
  13. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-310.pyc +0 -0
  14. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-310.pyc +0 -0
  15. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-310.pyc +0 -0
  16. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/style.cpython-310.pyc +0 -0
  17. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/tabulate.cpython-310.pyc +0 -0
  18. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-310.pyc +0 -0
  19. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-310.pyc +0 -0
  20. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-310.pyc +0 -0
  21. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/_cell_widths.py +451 -0
  22. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
  23. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/_extension.py +10 -0
  24. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/_inspect.py +210 -0
  25. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/_log_render.py +94 -0
  26. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/_lru_cache.py +34 -0
  27. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/_palettes.py +309 -0
  28. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/_pick.py +17 -0
  29. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/_ratio.py +160 -0
  30. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/_stack.py +16 -0
  31. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/_timer.py +19 -0
  32. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/_windows.py +72 -0
  33. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/_wrap.py +55 -0
  34. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/ansi.py +228 -0
  35. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/bar.py +94 -0
  36. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/box.py +483 -0
  37. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/cells.py +147 -0
  38. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/color.py +581 -0
  39. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
  40. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/columns.py +187 -0
  41. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/console.py +2211 -0
  42. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/constrain.py +37 -0
  43. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/containers.py +167 -0
  44. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/control.py +175 -0
  45. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/default_styles.py +183 -0
  46. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/diagnose.py +6 -0
  47. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/errors.py +34 -0
  48. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/file_proxy.py +54 -0
  49. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/filesize.py +89 -0
  50. llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/highlighter.py +147 -0
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__init__.py ADDED
@@ -0,0 +1,172 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Rich text and beautiful formatting in the terminal."""
2
+
3
+ import os
4
+ from typing import Callable, IO, TYPE_CHECKING, Any, Optional
5
+
6
+ from ._extension import load_ipython_extension
7
+
8
+ __all__ = ["get_console", "reconfigure", "print", "inspect"]
9
+
10
+ if TYPE_CHECKING:
11
+ from .console import Console
12
+
13
+ # Global console used by alternative print
14
+ _console: Optional["Console"] = None
15
+
16
+ _IMPORT_CWD = os.path.abspath(os.getcwd())
17
+
18
+
19
+ def get_console() -> "Console":
20
+ """Get a global :class:`~rich.console.Console` instance. This function is used when Rich requires a Console,
21
+ and hasn't been explicitly given one.
22
+
23
+ Returns:
24
+ Console: A console instance.
25
+ """
26
+ global _console
27
+ if _console is None:
28
+ from .console import Console
29
+
30
+ _console = Console()
31
+
32
+ return _console
33
+
34
+
35
+ def reconfigure(*args: Any, **kwargs: Any) -> None:
36
+ """Reconfigures the global console by replacing it with another.
37
+
38
+ Args:
39
+ console (Console): Replacement console instance.
40
+ """
41
+ from pip._vendor.rich.console import Console
42
+
43
+ new_console = Console(*args, **kwargs)
44
+ _console = get_console()
45
+ _console.__dict__ = new_console.__dict__
46
+
47
+
48
+ def print(
49
+ *objects: Any,
50
+ sep: str = " ",
51
+ end: str = "\n",
52
+ file: Optional[IO[str]] = None,
53
+ flush: bool = False,
54
+ ) -> None:
55
+ r"""Print object(s) supplied via positional arguments.
56
+ This function has an identical signature to the built-in print.
57
+ For more advanced features, see the :class:`~rich.console.Console` class.
58
+
59
+ Args:
60
+ sep (str, optional): Separator between printed objects. Defaults to " ".
61
+ end (str, optional): Character to write at end of output. Defaults to "\\n".
62
+ file (IO[str], optional): File to write to, or None for stdout. Defaults to None.
63
+ flush (bool, optional): Has no effect as Rich always flushes output. Defaults to False.
64
+
65
+ """
66
+ from .console import Console
67
+
68
+ write_console = get_console() if file is None else Console(file=file)
69
+ return write_console.print(*objects, sep=sep, end=end)
70
+
71
+
72
+ def print_json(
73
+ json: Optional[str] = None,
74
+ *,
75
+ data: Any = None,
76
+ indent: int = 2,
77
+ highlight: bool = True,
78
+ skip_keys: bool = False,
79
+ ensure_ascii: bool = True,
80
+ check_circular: bool = True,
81
+ allow_nan: bool = True,
82
+ default: Optional[Callable[[Any], Any]] = None,
83
+ sort_keys: bool = False,
84
+ ) -> None:
85
+ """Pretty prints JSON. Output will be valid JSON.
86
+
87
+ Args:
88
+ json (str): A string containing JSON.
89
+ data (Any): If json is not supplied, then encode this data.
90
+ indent (int, optional): Number of spaces to indent. Defaults to 2.
91
+ highlight (bool, optional): Enable highlighting of output: Defaults to True.
92
+ skip_keys (bool, optional): Skip keys not of a basic type. Defaults to False.
93
+ ensure_ascii (bool, optional): Escape all non-ascii characters. Defaults to False.
94
+ check_circular (bool, optional): Check for circular references. Defaults to True.
95
+ allow_nan (bool, optional): Allow NaN and Infinity values. Defaults to True.
96
+ default (Callable, optional): A callable that converts values that can not be encoded
97
+ in to something that can be JSON encoded. Defaults to None.
98
+ sort_keys (bool, optional): Sort dictionary keys. Defaults to False.
99
+ """
100
+
101
+ get_console().print_json(
102
+ json,
103
+ data=data,
104
+ indent=indent,
105
+ highlight=highlight,
106
+ skip_keys=skip_keys,
107
+ ensure_ascii=ensure_ascii,
108
+ check_circular=check_circular,
109
+ allow_nan=allow_nan,
110
+ default=default,
111
+ sort_keys=sort_keys,
112
+ )
113
+
114
+
115
+ def inspect(
116
+ obj: Any,
117
+ *,
118
+ console: Optional["Console"] = None,
119
+ title: Optional[str] = None,
120
+ help: bool = False,
121
+ methods: bool = False,
122
+ docs: bool = True,
123
+ private: bool = False,
124
+ dunder: bool = False,
125
+ sort: bool = True,
126
+ all: bool = False,
127
+ value: bool = True,
128
+ ) -> None:
129
+ """Inspect any Python object.
130
+
131
+ * inspect(<OBJECT>) to see summarized info.
132
+ * inspect(<OBJECT>, methods=True) to see methods.
133
+ * inspect(<OBJECT>, help=True) to see full (non-abbreviated) help.
134
+ * inspect(<OBJECT>, private=True) to see private attributes (single underscore).
135
+ * inspect(<OBJECT>, dunder=True) to see attributes beginning with double underscore.
136
+ * inspect(<OBJECT>, all=True) to see all attributes.
137
+
138
+ Args:
139
+ obj (Any): An object to inspect.
140
+ title (str, optional): Title to display over inspect result, or None use type. Defaults to None.
141
+ help (bool, optional): Show full help text rather than just first paragraph. Defaults to False.
142
+ methods (bool, optional): Enable inspection of callables. Defaults to False.
143
+ docs (bool, optional): Also render doc strings. Defaults to True.
144
+ private (bool, optional): Show private attributes (beginning with underscore). Defaults to False.
145
+ dunder (bool, optional): Show attributes starting with double underscore. Defaults to False.
146
+ sort (bool, optional): Sort attributes alphabetically. Defaults to True.
147
+ all (bool, optional): Show all attributes. Defaults to False.
148
+ value (bool, optional): Pretty print value. Defaults to True.
149
+ """
150
+ _console = console or get_console()
151
+ from pip._vendor.rich._inspect import Inspect
152
+
153
+ # Special case for inspect(inspect)
154
+ is_inspect = obj is inspect
155
+
156
+ _inspect = Inspect(
157
+ obj,
158
+ title=title,
159
+ help=is_inspect or help,
160
+ methods=is_inspect or methods,
161
+ docs=is_inspect or docs,
162
+ private=private,
163
+ dunder=dunder,
164
+ sort=sort,
165
+ all=all,
166
+ value=value,
167
+ )
168
+ _console.print(_inspect)
169
+
170
+
171
+ if __name__ == "__main__": # pragma: no cover
172
+ print("Hello, **World**")
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__main__.py ADDED
@@ -0,0 +1,280 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import colorsys
2
+ import io
3
+ from time import process_time
4
+
5
+ from pip._vendor.rich import box
6
+ from pip._vendor.rich.color import Color
7
+ from pip._vendor.rich.console import Console, ConsoleOptions, Group, RenderableType, RenderResult
8
+ from pip._vendor.rich.markdown import Markdown
9
+ from pip._vendor.rich.measure import Measurement
10
+ from pip._vendor.rich.pretty import Pretty
11
+ from pip._vendor.rich.segment import Segment
12
+ from pip._vendor.rich.style import Style
13
+ from pip._vendor.rich.syntax import Syntax
14
+ from pip._vendor.rich.table import Table
15
+ from pip._vendor.rich.text import Text
16
+
17
+
18
+ class ColorBox:
19
+ def __rich_console__(
20
+ self, console: Console, options: ConsoleOptions
21
+ ) -> RenderResult:
22
+ for y in range(0, 5):
23
+ for x in range(options.max_width):
24
+ h = x / options.max_width
25
+ l = 0.1 + ((y / 5) * 0.7)
26
+ r1, g1, b1 = colorsys.hls_to_rgb(h, l, 1.0)
27
+ r2, g2, b2 = colorsys.hls_to_rgb(h, l + 0.7 / 10, 1.0)
28
+ bgcolor = Color.from_rgb(r1 * 255, g1 * 255, b1 * 255)
29
+ color = Color.from_rgb(r2 * 255, g2 * 255, b2 * 255)
30
+ yield Segment("▄", Style(color=color, bgcolor=bgcolor))
31
+ yield Segment.line()
32
+
33
+ def __rich_measure__(
34
+ self, console: "Console", options: ConsoleOptions
35
+ ) -> Measurement:
36
+ return Measurement(1, options.max_width)
37
+
38
+
39
+ def make_test_card() -> Table:
40
+ """Get a renderable that demonstrates a number of features."""
41
+ table = Table.grid(padding=1, pad_edge=True)
42
+ table.title = "Rich features"
43
+ table.add_column("Feature", no_wrap=True, justify="center", style="bold red")
44
+ table.add_column("Demonstration")
45
+
46
+ color_table = Table(
47
+ box=None,
48
+ expand=False,
49
+ show_header=False,
50
+ show_edge=False,
51
+ pad_edge=False,
52
+ )
53
+ color_table.add_row(
54
+ # "[bold yellow]256[/] colors or [bold green]16.7 million[/] colors [blue](if supported by your terminal)[/].",
55
+ (
56
+ "✓ [bold green]4-bit color[/]\n"
57
+ "✓ [bold blue]8-bit color[/]\n"
58
+ "✓ [bold magenta]Truecolor (16.7 million)[/]\n"
59
+ "✓ [bold yellow]Dumb terminals[/]\n"
60
+ "✓ [bold cyan]Automatic color conversion"
61
+ ),
62
+ ColorBox(),
63
+ )
64
+
65
+ table.add_row("Colors", color_table)
66
+
67
+ table.add_row(
68
+ "Styles",
69
+ "All ansi styles: [bold]bold[/], [dim]dim[/], [italic]italic[/italic], [underline]underline[/], [strike]strikethrough[/], [reverse]reverse[/], and even [blink]blink[/].",
70
+ )
71
+
72
+ lorem = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque in metus sed sapien ultricies pretium a at justo. Maecenas luctus velit et auctor maximus."
73
+ lorem_table = Table.grid(padding=1, collapse_padding=True)
74
+ lorem_table.pad_edge = False
75
+ lorem_table.add_row(
76
+ Text(lorem, justify="left", style="green"),
77
+ Text(lorem, justify="center", style="yellow"),
78
+ Text(lorem, justify="right", style="blue"),
79
+ Text(lorem, justify="full", style="red"),
80
+ )
81
+ table.add_row(
82
+ "Text",
83
+ Group(
84
+ Text.from_markup(
85
+ """Word wrap text. Justify [green]left[/], [yellow]center[/], [blue]right[/] or [red]full[/].\n"""
86
+ ),
87
+ lorem_table,
88
+ ),
89
+ )
90
+
91
+ def comparison(renderable1: RenderableType, renderable2: RenderableType) -> Table:
92
+ table = Table(show_header=False, pad_edge=False, box=None, expand=True)
93
+ table.add_column("1", ratio=1)
94
+ table.add_column("2", ratio=1)
95
+ table.add_row(renderable1, renderable2)
96
+ return table
97
+
98
+ table.add_row(
99
+ "Asian\nlanguage\nsupport",
100
+ ":flag_for_china: 该库支持中文,日文和韩文文本!\n:flag_for_japan: ライブラリは中国語、日本語、韓国語のテキストをサポートしています\n:flag_for_south_korea: 이 라이브러리는 중국어, 일본어 및 한국어 텍스트를 지원합니다",
101
+ )
102
+
103
+ markup_example = (
104
+ "[bold magenta]Rich[/] supports a simple [i]bbcode[/i]-like [b]markup[/b] for [yellow]color[/], [underline]style[/], and emoji! "
105
+ ":+1: :apple: :ant: :bear: :baguette_bread: :bus: "
106
+ )
107
+ table.add_row("Markup", markup_example)
108
+
109
+ example_table = Table(
110
+ show_edge=False,
111
+ show_header=True,
112
+ expand=False,
113
+ row_styles=["none", "dim"],
114
+ box=box.SIMPLE,
115
+ )
116
+ example_table.add_column("[green]Date", style="green", no_wrap=True)
117
+ example_table.add_column("[blue]Title", style="blue")
118
+ example_table.add_column(
119
+ "[cyan]Production Budget",
120
+ style="cyan",
121
+ justify="right",
122
+ no_wrap=True,
123
+ )
124
+ example_table.add_column(
125
+ "[magenta]Box Office",
126
+ style="magenta",
127
+ justify="right",
128
+ no_wrap=True,
129
+ )
130
+ example_table.add_row(
131
+ "Dec 20, 2019",
132
+ "Star Wars: The Rise of Skywalker",
133
+ "$275,000,000",
134
+ "$375,126,118",
135
+ )
136
+ example_table.add_row(
137
+ "May 25, 2018",
138
+ "[b]Solo[/]: A Star Wars Story",
139
+ "$275,000,000",
140
+ "$393,151,347",
141
+ )
142
+ example_table.add_row(
143
+ "Dec 15, 2017",
144
+ "Star Wars Ep. VIII: The Last Jedi",
145
+ "$262,000,000",
146
+ "[bold]$1,332,539,889[/bold]",
147
+ )
148
+ example_table.add_row(
149
+ "May 19, 1999",
150
+ "Star Wars Ep. [b]I[/b]: [i]The phantom Menace",
151
+ "$115,000,000",
152
+ "$1,027,044,677",
153
+ )
154
+
155
+ table.add_row("Tables", example_table)
156
+
157
+ code = '''\
158
+ def iter_last(values: Iterable[T]) -> Iterable[Tuple[bool, T]]:
159
+ """Iterate and generate a tuple with a flag for last value."""
160
+ iter_values = iter(values)
161
+ try:
162
+ previous_value = next(iter_values)
163
+ except StopIteration:
164
+ return
165
+ for value in iter_values:
166
+ yield False, previous_value
167
+ previous_value = value
168
+ yield True, previous_value'''
169
+
170
+ pretty_data = {
171
+ "foo": [
172
+ 3.1427,
173
+ (
174
+ "Paul Atreides",
175
+ "Vladimir Harkonnen",
176
+ "Thufir Hawat",
177
+ ),
178
+ ],
179
+ "atomic": (False, True, None),
180
+ }
181
+ table.add_row(
182
+ "Syntax\nhighlighting\n&\npretty\nprinting",
183
+ comparison(
184
+ Syntax(code, "python3", line_numbers=True, indent_guides=True),
185
+ Pretty(pretty_data, indent_guides=True),
186
+ ),
187
+ )
188
+
189
+ markdown_example = """\
190
+ # Markdown
191
+
192
+ Supports much of the *markdown* __syntax__!
193
+
194
+ - Headers
195
+ - Basic formatting: **bold**, *italic*, `code`
196
+ - Block quotes
197
+ - Lists, and more...
198
+ """
199
+ table.add_row(
200
+ "Markdown", comparison("[cyan]" + markdown_example, Markdown(markdown_example))
201
+ )
202
+
203
+ table.add_row(
204
+ "+more!",
205
+ """Progress bars, columns, styled logging handler, tracebacks, etc...""",
206
+ )
207
+ return table
208
+
209
+
210
+ if __name__ == "__main__": # pragma: no cover
211
+
212
+ console = Console(
213
+ file=io.StringIO(),
214
+ force_terminal=True,
215
+ )
216
+ test_card = make_test_card()
217
+
218
+ # Print once to warm cache
219
+ start = process_time()
220
+ console.print(test_card)
221
+ pre_cache_taken = round((process_time() - start) * 1000.0, 1)
222
+
223
+ console.file = io.StringIO()
224
+
225
+ start = process_time()
226
+ console.print(test_card)
227
+ taken = round((process_time() - start) * 1000.0, 1)
228
+
229
+ text = console.file.getvalue()
230
+ # https://bugs.python.org/issue37871
231
+ for line in text.splitlines(True):
232
+ print(line, end="")
233
+
234
+ print(f"rendered in {pre_cache_taken}ms (cold cache)")
235
+ print(f"rendered in {taken}ms (warm cache)")
236
+
237
+ from pip._vendor.rich.panel import Panel
238
+
239
+ console = Console()
240
+
241
+ sponsor_message = Table.grid(padding=1)
242
+ sponsor_message.add_column(style="green", justify="right")
243
+ sponsor_message.add_column(no_wrap=True)
244
+
245
+ sponsor_message.add_row(
246
+ "Buy devs a :coffee:",
247
+ "[u blue link=https://ko-fi.com/textualize]https://ko-fi.com/textualize",
248
+ )
249
+ sponsor_message.add_row(
250
+ "Twitter",
251
+ "[u blue link=https://twitter.com/willmcgugan]https://twitter.com/willmcgugan",
252
+ )
253
+ sponsor_message.add_row(
254
+ "Blog", "[u blue link=https://www.willmcgugan.com]https://www.willmcgugan.com"
255
+ )
256
+
257
+ intro_message = Text.from_markup(
258
+ """\
259
+ We hope you enjoy using Rich!
260
+
261
+ Rich is maintained with :heart: by [link=https://www.textualize.io]Textualize.io[/]
262
+
263
+ - Will McGugan"""
264
+ )
265
+
266
+ message = Table.grid(padding=2)
267
+ message.add_column()
268
+ message.add_column(no_wrap=True)
269
+ message.add_row(intro_message, sponsor_message)
270
+
271
+ console.print(
272
+ Panel.fit(
273
+ message,
274
+ box=box.ROUNDED,
275
+ padding=(1, 2),
276
+ title="[b red]Thanks for trying out Rich!",
277
+ border_style="bright_blue",
278
+ ),
279
+ justify="center",
280
+ )
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-310.pyc ADDED
Binary file (5.89 kB). View file
 
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-310.pyc ADDED
Binary file (7.82 kB). View file
 
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-310.pyc ADDED
Binary file (2.98 kB). View file
 
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-310.pyc ADDED
Binary file (1.76 kB). View file
 
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-310.pyc ADDED
Binary file (2.27 kB). View file
 
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-310.pyc ADDED
Binary file (14.7 kB). View file
 
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-310.pyc ADDED
Binary file (1.5 kB). View file
 
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-310.pyc ADDED
Binary file (3.71 kB). View file
 
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-310.pyc ADDED
Binary file (6.39 kB). View file
 
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-310.pyc ADDED
Binary file (25.1 kB). View file
 
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-310.pyc ADDED
Binary file (1.37 kB). View file
 
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-310.pyc ADDED
Binary file (4.04 kB). View file
 
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-310.pyc ADDED
Binary file (2.99 kB). View file
 
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/style.cpython-310.pyc ADDED
Binary file (20.5 kB). View file
 
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/tabulate.cpython-310.pyc ADDED
Binary file (1.76 kB). View file
 
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-310.pyc ADDED
Binary file (4.7 kB). View file
 
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-310.pyc ADDED
Binary file (294 Bytes). View file
 
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-310.pyc ADDED
Binary file (19.5 kB). View file
 
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/_cell_widths.py ADDED
@@ -0,0 +1,451 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Auto generated by make_terminal_widths.py
2
+
3
+ CELL_WIDTHS = [
4
+ (0, 0, 0),
5
+ (1, 31, -1),
6
+ (127, 159, -1),
7
+ (768, 879, 0),
8
+ (1155, 1161, 0),
9
+ (1425, 1469, 0),
10
+ (1471, 1471, 0),
11
+ (1473, 1474, 0),
12
+ (1476, 1477, 0),
13
+ (1479, 1479, 0),
14
+ (1552, 1562, 0),
15
+ (1611, 1631, 0),
16
+ (1648, 1648, 0),
17
+ (1750, 1756, 0),
18
+ (1759, 1764, 0),
19
+ (1767, 1768, 0),
20
+ (1770, 1773, 0),
21
+ (1809, 1809, 0),
22
+ (1840, 1866, 0),
23
+ (1958, 1968, 0),
24
+ (2027, 2035, 0),
25
+ (2045, 2045, 0),
26
+ (2070, 2073, 0),
27
+ (2075, 2083, 0),
28
+ (2085, 2087, 0),
29
+ (2089, 2093, 0),
30
+ (2137, 2139, 0),
31
+ (2259, 2273, 0),
32
+ (2275, 2306, 0),
33
+ (2362, 2362, 0),
34
+ (2364, 2364, 0),
35
+ (2369, 2376, 0),
36
+ (2381, 2381, 0),
37
+ (2385, 2391, 0),
38
+ (2402, 2403, 0),
39
+ (2433, 2433, 0),
40
+ (2492, 2492, 0),
41
+ (2497, 2500, 0),
42
+ (2509, 2509, 0),
43
+ (2530, 2531, 0),
44
+ (2558, 2558, 0),
45
+ (2561, 2562, 0),
46
+ (2620, 2620, 0),
47
+ (2625, 2626, 0),
48
+ (2631, 2632, 0),
49
+ (2635, 2637, 0),
50
+ (2641, 2641, 0),
51
+ (2672, 2673, 0),
52
+ (2677, 2677, 0),
53
+ (2689, 2690, 0),
54
+ (2748, 2748, 0),
55
+ (2753, 2757, 0),
56
+ (2759, 2760, 0),
57
+ (2765, 2765, 0),
58
+ (2786, 2787, 0),
59
+ (2810, 2815, 0),
60
+ (2817, 2817, 0),
61
+ (2876, 2876, 0),
62
+ (2879, 2879, 0),
63
+ (2881, 2884, 0),
64
+ (2893, 2893, 0),
65
+ (2901, 2902, 0),
66
+ (2914, 2915, 0),
67
+ (2946, 2946, 0),
68
+ (3008, 3008, 0),
69
+ (3021, 3021, 0),
70
+ (3072, 3072, 0),
71
+ (3076, 3076, 0),
72
+ (3134, 3136, 0),
73
+ (3142, 3144, 0),
74
+ (3146, 3149, 0),
75
+ (3157, 3158, 0),
76
+ (3170, 3171, 0),
77
+ (3201, 3201, 0),
78
+ (3260, 3260, 0),
79
+ (3263, 3263, 0),
80
+ (3270, 3270, 0),
81
+ (3276, 3277, 0),
82
+ (3298, 3299, 0),
83
+ (3328, 3329, 0),
84
+ (3387, 3388, 0),
85
+ (3393, 3396, 0),
86
+ (3405, 3405, 0),
87
+ (3426, 3427, 0),
88
+ (3457, 3457, 0),
89
+ (3530, 3530, 0),
90
+ (3538, 3540, 0),
91
+ (3542, 3542, 0),
92
+ (3633, 3633, 0),
93
+ (3636, 3642, 0),
94
+ (3655, 3662, 0),
95
+ (3761, 3761, 0),
96
+ (3764, 3772, 0),
97
+ (3784, 3789, 0),
98
+ (3864, 3865, 0),
99
+ (3893, 3893, 0),
100
+ (3895, 3895, 0),
101
+ (3897, 3897, 0),
102
+ (3953, 3966, 0),
103
+ (3968, 3972, 0),
104
+ (3974, 3975, 0),
105
+ (3981, 3991, 0),
106
+ (3993, 4028, 0),
107
+ (4038, 4038, 0),
108
+ (4141, 4144, 0),
109
+ (4146, 4151, 0),
110
+ (4153, 4154, 0),
111
+ (4157, 4158, 0),
112
+ (4184, 4185, 0),
113
+ (4190, 4192, 0),
114
+ (4209, 4212, 0),
115
+ (4226, 4226, 0),
116
+ (4229, 4230, 0),
117
+ (4237, 4237, 0),
118
+ (4253, 4253, 0),
119
+ (4352, 4447, 2),
120
+ (4957, 4959, 0),
121
+ (5906, 5908, 0),
122
+ (5938, 5940, 0),
123
+ (5970, 5971, 0),
124
+ (6002, 6003, 0),
125
+ (6068, 6069, 0),
126
+ (6071, 6077, 0),
127
+ (6086, 6086, 0),
128
+ (6089, 6099, 0),
129
+ (6109, 6109, 0),
130
+ (6155, 6157, 0),
131
+ (6277, 6278, 0),
132
+ (6313, 6313, 0),
133
+ (6432, 6434, 0),
134
+ (6439, 6440, 0),
135
+ (6450, 6450, 0),
136
+ (6457, 6459, 0),
137
+ (6679, 6680, 0),
138
+ (6683, 6683, 0),
139
+ (6742, 6742, 0),
140
+ (6744, 6750, 0),
141
+ (6752, 6752, 0),
142
+ (6754, 6754, 0),
143
+ (6757, 6764, 0),
144
+ (6771, 6780, 0),
145
+ (6783, 6783, 0),
146
+ (6832, 6848, 0),
147
+ (6912, 6915, 0),
148
+ (6964, 6964, 0),
149
+ (6966, 6970, 0),
150
+ (6972, 6972, 0),
151
+ (6978, 6978, 0),
152
+ (7019, 7027, 0),
153
+ (7040, 7041, 0),
154
+ (7074, 7077, 0),
155
+ (7080, 7081, 0),
156
+ (7083, 7085, 0),
157
+ (7142, 7142, 0),
158
+ (7144, 7145, 0),
159
+ (7149, 7149, 0),
160
+ (7151, 7153, 0),
161
+ (7212, 7219, 0),
162
+ (7222, 7223, 0),
163
+ (7376, 7378, 0),
164
+ (7380, 7392, 0),
165
+ (7394, 7400, 0),
166
+ (7405, 7405, 0),
167
+ (7412, 7412, 0),
168
+ (7416, 7417, 0),
169
+ (7616, 7673, 0),
170
+ (7675, 7679, 0),
171
+ (8203, 8207, 0),
172
+ (8232, 8238, 0),
173
+ (8288, 8291, 0),
174
+ (8400, 8432, 0),
175
+ (8986, 8987, 2),
176
+ (9001, 9002, 2),
177
+ (9193, 9196, 2),
178
+ (9200, 9200, 2),
179
+ (9203, 9203, 2),
180
+ (9725, 9726, 2),
181
+ (9748, 9749, 2),
182
+ (9800, 9811, 2),
183
+ (9855, 9855, 2),
184
+ (9875, 9875, 2),
185
+ (9889, 9889, 2),
186
+ (9898, 9899, 2),
187
+ (9917, 9918, 2),
188
+ (9924, 9925, 2),
189
+ (9934, 9934, 2),
190
+ (9940, 9940, 2),
191
+ (9962, 9962, 2),
192
+ (9970, 9971, 2),
193
+ (9973, 9973, 2),
194
+ (9978, 9978, 2),
195
+ (9981, 9981, 2),
196
+ (9989, 9989, 2),
197
+ (9994, 9995, 2),
198
+ (10024, 10024, 2),
199
+ (10060, 10060, 2),
200
+ (10062, 10062, 2),
201
+ (10067, 10069, 2),
202
+ (10071, 10071, 2),
203
+ (10133, 10135, 2),
204
+ (10160, 10160, 2),
205
+ (10175, 10175, 2),
206
+ (11035, 11036, 2),
207
+ (11088, 11088, 2),
208
+ (11093, 11093, 2),
209
+ (11503, 11505, 0),
210
+ (11647, 11647, 0),
211
+ (11744, 11775, 0),
212
+ (11904, 11929, 2),
213
+ (11931, 12019, 2),
214
+ (12032, 12245, 2),
215
+ (12272, 12283, 2),
216
+ (12288, 12329, 2),
217
+ (12330, 12333, 0),
218
+ (12334, 12350, 2),
219
+ (12353, 12438, 2),
220
+ (12441, 12442, 0),
221
+ (12443, 12543, 2),
222
+ (12549, 12591, 2),
223
+ (12593, 12686, 2),
224
+ (12688, 12771, 2),
225
+ (12784, 12830, 2),
226
+ (12832, 12871, 2),
227
+ (12880, 19903, 2),
228
+ (19968, 42124, 2),
229
+ (42128, 42182, 2),
230
+ (42607, 42610, 0),
231
+ (42612, 42621, 0),
232
+ (42654, 42655, 0),
233
+ (42736, 42737, 0),
234
+ (43010, 43010, 0),
235
+ (43014, 43014, 0),
236
+ (43019, 43019, 0),
237
+ (43045, 43046, 0),
238
+ (43052, 43052, 0),
239
+ (43204, 43205, 0),
240
+ (43232, 43249, 0),
241
+ (43263, 43263, 0),
242
+ (43302, 43309, 0),
243
+ (43335, 43345, 0),
244
+ (43360, 43388, 2),
245
+ (43392, 43394, 0),
246
+ (43443, 43443, 0),
247
+ (43446, 43449, 0),
248
+ (43452, 43453, 0),
249
+ (43493, 43493, 0),
250
+ (43561, 43566, 0),
251
+ (43569, 43570, 0),
252
+ (43573, 43574, 0),
253
+ (43587, 43587, 0),
254
+ (43596, 43596, 0),
255
+ (43644, 43644, 0),
256
+ (43696, 43696, 0),
257
+ (43698, 43700, 0),
258
+ (43703, 43704, 0),
259
+ (43710, 43711, 0),
260
+ (43713, 43713, 0),
261
+ (43756, 43757, 0),
262
+ (43766, 43766, 0),
263
+ (44005, 44005, 0),
264
+ (44008, 44008, 0),
265
+ (44013, 44013, 0),
266
+ (44032, 55203, 2),
267
+ (63744, 64255, 2),
268
+ (64286, 64286, 0),
269
+ (65024, 65039, 0),
270
+ (65040, 65049, 2),
271
+ (65056, 65071, 0),
272
+ (65072, 65106, 2),
273
+ (65108, 65126, 2),
274
+ (65128, 65131, 2),
275
+ (65281, 65376, 2),
276
+ (65504, 65510, 2),
277
+ (66045, 66045, 0),
278
+ (66272, 66272, 0),
279
+ (66422, 66426, 0),
280
+ (68097, 68099, 0),
281
+ (68101, 68102, 0),
282
+ (68108, 68111, 0),
283
+ (68152, 68154, 0),
284
+ (68159, 68159, 0),
285
+ (68325, 68326, 0),
286
+ (68900, 68903, 0),
287
+ (69291, 69292, 0),
288
+ (69446, 69456, 0),
289
+ (69633, 69633, 0),
290
+ (69688, 69702, 0),
291
+ (69759, 69761, 0),
292
+ (69811, 69814, 0),
293
+ (69817, 69818, 0),
294
+ (69888, 69890, 0),
295
+ (69927, 69931, 0),
296
+ (69933, 69940, 0),
297
+ (70003, 70003, 0),
298
+ (70016, 70017, 0),
299
+ (70070, 70078, 0),
300
+ (70089, 70092, 0),
301
+ (70095, 70095, 0),
302
+ (70191, 70193, 0),
303
+ (70196, 70196, 0),
304
+ (70198, 70199, 0),
305
+ (70206, 70206, 0),
306
+ (70367, 70367, 0),
307
+ (70371, 70378, 0),
308
+ (70400, 70401, 0),
309
+ (70459, 70460, 0),
310
+ (70464, 70464, 0),
311
+ (70502, 70508, 0),
312
+ (70512, 70516, 0),
313
+ (70712, 70719, 0),
314
+ (70722, 70724, 0),
315
+ (70726, 70726, 0),
316
+ (70750, 70750, 0),
317
+ (70835, 70840, 0),
318
+ (70842, 70842, 0),
319
+ (70847, 70848, 0),
320
+ (70850, 70851, 0),
321
+ (71090, 71093, 0),
322
+ (71100, 71101, 0),
323
+ (71103, 71104, 0),
324
+ (71132, 71133, 0),
325
+ (71219, 71226, 0),
326
+ (71229, 71229, 0),
327
+ (71231, 71232, 0),
328
+ (71339, 71339, 0),
329
+ (71341, 71341, 0),
330
+ (71344, 71349, 0),
331
+ (71351, 71351, 0),
332
+ (71453, 71455, 0),
333
+ (71458, 71461, 0),
334
+ (71463, 71467, 0),
335
+ (71727, 71735, 0),
336
+ (71737, 71738, 0),
337
+ (71995, 71996, 0),
338
+ (71998, 71998, 0),
339
+ (72003, 72003, 0),
340
+ (72148, 72151, 0),
341
+ (72154, 72155, 0),
342
+ (72160, 72160, 0),
343
+ (72193, 72202, 0),
344
+ (72243, 72248, 0),
345
+ (72251, 72254, 0),
346
+ (72263, 72263, 0),
347
+ (72273, 72278, 0),
348
+ (72281, 72283, 0),
349
+ (72330, 72342, 0),
350
+ (72344, 72345, 0),
351
+ (72752, 72758, 0),
352
+ (72760, 72765, 0),
353
+ (72767, 72767, 0),
354
+ (72850, 72871, 0),
355
+ (72874, 72880, 0),
356
+ (72882, 72883, 0),
357
+ (72885, 72886, 0),
358
+ (73009, 73014, 0),
359
+ (73018, 73018, 0),
360
+ (73020, 73021, 0),
361
+ (73023, 73029, 0),
362
+ (73031, 73031, 0),
363
+ (73104, 73105, 0),
364
+ (73109, 73109, 0),
365
+ (73111, 73111, 0),
366
+ (73459, 73460, 0),
367
+ (92912, 92916, 0),
368
+ (92976, 92982, 0),
369
+ (94031, 94031, 0),
370
+ (94095, 94098, 0),
371
+ (94176, 94179, 2),
372
+ (94180, 94180, 0),
373
+ (94192, 94193, 2),
374
+ (94208, 100343, 2),
375
+ (100352, 101589, 2),
376
+ (101632, 101640, 2),
377
+ (110592, 110878, 2),
378
+ (110928, 110930, 2),
379
+ (110948, 110951, 2),
380
+ (110960, 111355, 2),
381
+ (113821, 113822, 0),
382
+ (119143, 119145, 0),
383
+ (119163, 119170, 0),
384
+ (119173, 119179, 0),
385
+ (119210, 119213, 0),
386
+ (119362, 119364, 0),
387
+ (121344, 121398, 0),
388
+ (121403, 121452, 0),
389
+ (121461, 121461, 0),
390
+ (121476, 121476, 0),
391
+ (121499, 121503, 0),
392
+ (121505, 121519, 0),
393
+ (122880, 122886, 0),
394
+ (122888, 122904, 0),
395
+ (122907, 122913, 0),
396
+ (122915, 122916, 0),
397
+ (122918, 122922, 0),
398
+ (123184, 123190, 0),
399
+ (123628, 123631, 0),
400
+ (125136, 125142, 0),
401
+ (125252, 125258, 0),
402
+ (126980, 126980, 2),
403
+ (127183, 127183, 2),
404
+ (127374, 127374, 2),
405
+ (127377, 127386, 2),
406
+ (127488, 127490, 2),
407
+ (127504, 127547, 2),
408
+ (127552, 127560, 2),
409
+ (127568, 127569, 2),
410
+ (127584, 127589, 2),
411
+ (127744, 127776, 2),
412
+ (127789, 127797, 2),
413
+ (127799, 127868, 2),
414
+ (127870, 127891, 2),
415
+ (127904, 127946, 2),
416
+ (127951, 127955, 2),
417
+ (127968, 127984, 2),
418
+ (127988, 127988, 2),
419
+ (127992, 128062, 2),
420
+ (128064, 128064, 2),
421
+ (128066, 128252, 2),
422
+ (128255, 128317, 2),
423
+ (128331, 128334, 2),
424
+ (128336, 128359, 2),
425
+ (128378, 128378, 2),
426
+ (128405, 128406, 2),
427
+ (128420, 128420, 2),
428
+ (128507, 128591, 2),
429
+ (128640, 128709, 2),
430
+ (128716, 128716, 2),
431
+ (128720, 128722, 2),
432
+ (128725, 128727, 2),
433
+ (128747, 128748, 2),
434
+ (128756, 128764, 2),
435
+ (128992, 129003, 2),
436
+ (129292, 129338, 2),
437
+ (129340, 129349, 2),
438
+ (129351, 129400, 2),
439
+ (129402, 129483, 2),
440
+ (129485, 129535, 2),
441
+ (129648, 129652, 2),
442
+ (129656, 129658, 2),
443
+ (129664, 129670, 2),
444
+ (129680, 129704, 2),
445
+ (129712, 129718, 2),
446
+ (129728, 129730, 2),
447
+ (129744, 129750, 2),
448
+ (131072, 196605, 2),
449
+ (196608, 262141, 2),
450
+ (917760, 917999, 0),
451
+ ]
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/_emoji_replace.py ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Callable, Match, Optional
2
+ import re
3
+
4
+ from ._emoji_codes import EMOJI
5
+
6
+
7
+ _ReStringMatch = Match[str] # regex match object
8
+ _ReSubCallable = Callable[[_ReStringMatch], str] # Callable invoked by re.sub
9
+ _EmojiSubMethod = Callable[[_ReSubCallable, str], str] # Sub method of a compiled re
10
+
11
+
12
+ def _emoji_replace(
13
+ text: str,
14
+ default_variant: Optional[str] = None,
15
+ _emoji_sub: _EmojiSubMethod = re.compile(r"(:(\S*?)(?:(?:\-)(emoji|text))?:)").sub,
16
+ ) -> str:
17
+ """Replace emoji code in text."""
18
+ get_emoji = EMOJI.__getitem__
19
+ variants = {"text": "\uFE0E", "emoji": "\uFE0F"}
20
+ get_variant = variants.get
21
+ default_variant_code = variants.get(default_variant, "") if default_variant else ""
22
+
23
+ def do_replace(match: Match[str]) -> str:
24
+ emoji_code, emoji_name, variant = match.groups()
25
+ try:
26
+ return get_emoji(emoji_name.lower()) + get_variant(
27
+ variant, default_variant_code
28
+ )
29
+ except KeyError:
30
+ return emoji_code
31
+
32
+ return _emoji_sub(do_replace, text)
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/_extension.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Any
2
+
3
+
4
+ def load_ipython_extension(ip: Any) -> None: # pragma: no cover
5
+ # prevent circular import
6
+ from pip._vendor.rich.pretty import install
7
+ from pip._vendor.rich.traceback import install as tr_install
8
+
9
+ install()
10
+ tr_install()
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/_inspect.py ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from __future__ import absolute_import
2
+
3
+ from inspect import cleandoc, getdoc, getfile, isclass, ismodule, signature
4
+ from typing import Any, Iterable, Optional, Tuple
5
+
6
+ from .console import RenderableType, Group
7
+ from .highlighter import ReprHighlighter
8
+ from .jupyter import JupyterMixin
9
+ from .panel import Panel
10
+ from .pretty import Pretty
11
+ from .table import Table
12
+ from .text import Text, TextType
13
+
14
+
15
+ def _first_paragraph(doc: str) -> str:
16
+ """Get the first paragraph from a docstring."""
17
+ paragraph, _, _ = doc.partition("\n\n")
18
+ return paragraph
19
+
20
+
21
+ def _reformat_doc(doc: str) -> str:
22
+ """Reformat docstring."""
23
+ doc = cleandoc(doc).strip()
24
+ return doc
25
+
26
+
27
+ class Inspect(JupyterMixin):
28
+ """A renderable to inspect any Python Object.
29
+
30
+ Args:
31
+ obj (Any): An object to inspect.
32
+ title (str, optional): Title to display over inspect result, or None use type. Defaults to None.
33
+ help (bool, optional): Show full help text rather than just first paragraph. Defaults to False.
34
+ methods (bool, optional): Enable inspection of callables. Defaults to False.
35
+ docs (bool, optional): Also render doc strings. Defaults to True.
36
+ private (bool, optional): Show private attributes (beginning with underscore). Defaults to False.
37
+ dunder (bool, optional): Show attributes starting with double underscore. Defaults to False.
38
+ sort (bool, optional): Sort attributes alphabetically. Defaults to True.
39
+ all (bool, optional): Show all attributes. Defaults to False.
40
+ value (bool, optional): Pretty print value of object. Defaults to True.
41
+ """
42
+
43
+ def __init__(
44
+ self,
45
+ obj: Any,
46
+ *,
47
+ title: Optional[TextType] = None,
48
+ help: bool = False,
49
+ methods: bool = False,
50
+ docs: bool = True,
51
+ private: bool = False,
52
+ dunder: bool = False,
53
+ sort: bool = True,
54
+ all: bool = True,
55
+ value: bool = True,
56
+ ) -> None:
57
+ self.highlighter = ReprHighlighter()
58
+ self.obj = obj
59
+ self.title = title or self._make_title(obj)
60
+ if all:
61
+ methods = private = dunder = True
62
+ self.help = help
63
+ self.methods = methods
64
+ self.docs = docs or help
65
+ self.private = private or dunder
66
+ self.dunder = dunder
67
+ self.sort = sort
68
+ self.value = value
69
+
70
+ def _make_title(self, obj: Any) -> Text:
71
+ """Make a default title."""
72
+ title_str = (
73
+ str(obj)
74
+ if (isclass(obj) or callable(obj) or ismodule(obj))
75
+ else str(type(obj))
76
+ )
77
+ title_text = self.highlighter(title_str)
78
+ return title_text
79
+
80
+ def __rich__(self) -> Panel:
81
+ return Panel.fit(
82
+ Group(*self._render()),
83
+ title=self.title,
84
+ border_style="scope.border",
85
+ padding=(0, 1),
86
+ )
87
+
88
+ def _get_signature(self, name: str, obj: Any) -> Optional[Text]:
89
+ """Get a signature for a callable."""
90
+ try:
91
+ _signature = str(signature(obj)) + ":"
92
+ except ValueError:
93
+ _signature = "(...)"
94
+ except TypeError:
95
+ return None
96
+
97
+ source_filename: Optional[str] = None
98
+ try:
99
+ source_filename = getfile(obj)
100
+ except TypeError:
101
+ pass
102
+
103
+ callable_name = Text(name, style="inspect.callable")
104
+ if source_filename:
105
+ callable_name.stylize(f"link file://{source_filename}")
106
+ signature_text = self.highlighter(_signature)
107
+
108
+ qualname = name or getattr(obj, "__qualname__", name)
109
+ qual_signature = Text.assemble(
110
+ ("def ", "inspect.def"), (qualname, "inspect.callable"), signature_text
111
+ )
112
+
113
+ return qual_signature
114
+
115
+ def _render(self) -> Iterable[RenderableType]:
116
+ """Render object."""
117
+
118
+ def sort_items(item: Tuple[str, Any]) -> Tuple[bool, str]:
119
+ key, (_error, value) = item
120
+ return (callable(value), key.strip("_").lower())
121
+
122
+ def safe_getattr(attr_name: str) -> Tuple[Any, Any]:
123
+ """Get attribute or any exception."""
124
+ try:
125
+ return (None, getattr(obj, attr_name))
126
+ except Exception as error:
127
+ return (error, None)
128
+
129
+ obj = self.obj
130
+ keys = dir(obj)
131
+ total_items = len(keys)
132
+ if not self.dunder:
133
+ keys = [key for key in keys if not key.startswith("__")]
134
+ if not self.private:
135
+ keys = [key for key in keys if not key.startswith("_")]
136
+ not_shown_count = total_items - len(keys)
137
+ items = [(key, safe_getattr(key)) for key in keys]
138
+ if self.sort:
139
+ items.sort(key=sort_items)
140
+
141
+ items_table = Table.grid(padding=(0, 1), expand=False)
142
+ items_table.add_column(justify="right")
143
+ add_row = items_table.add_row
144
+ highlighter = self.highlighter
145
+
146
+ if callable(obj):
147
+ signature = self._get_signature("", obj)
148
+ if signature is not None:
149
+ yield signature
150
+ yield ""
151
+
152
+ if self.docs:
153
+ _doc = getdoc(obj)
154
+ if _doc is not None:
155
+ if not self.help:
156
+ _doc = _first_paragraph(_doc)
157
+ doc_text = Text(_reformat_doc(_doc), style="inspect.help")
158
+ doc_text = highlighter(doc_text)
159
+ yield doc_text
160
+ yield ""
161
+
162
+ if self.value and not (isclass(obj) or callable(obj) or ismodule(obj)):
163
+ yield Panel(
164
+ Pretty(obj, indent_guides=True, max_length=10, max_string=60),
165
+ border_style="inspect.value.border",
166
+ )
167
+ yield ""
168
+
169
+ for key, (error, value) in items:
170
+ key_text = Text.assemble(
171
+ (
172
+ key,
173
+ "inspect.attr.dunder" if key.startswith("__") else "inspect.attr",
174
+ ),
175
+ (" =", "inspect.equals"),
176
+ )
177
+ if error is not None:
178
+ warning = key_text.copy()
179
+ warning.stylize("inspect.error")
180
+ add_row(warning, highlighter(repr(error)))
181
+ continue
182
+
183
+ if callable(value):
184
+ if not self.methods:
185
+ continue
186
+
187
+ _signature_text = self._get_signature(key, value)
188
+ if _signature_text is None:
189
+ add_row(key_text, Pretty(value, highlighter=highlighter))
190
+ else:
191
+ if self.docs:
192
+ docs = getdoc(value)
193
+ if docs is not None:
194
+ _doc = _reformat_doc(str(docs))
195
+ if not self.help:
196
+ _doc = _first_paragraph(_doc)
197
+ _signature_text.append("\n" if "\n" in _doc else " ")
198
+ doc = highlighter(_doc)
199
+ doc.stylize("inspect.doc")
200
+ _signature_text.append(doc)
201
+
202
+ add_row(key_text, _signature_text)
203
+ else:
204
+ add_row(key_text, Pretty(value, highlighter=highlighter))
205
+ if items_table.row_count:
206
+ yield items_table
207
+ else:
208
+ yield Text.from_markup(
209
+ f"[b cyan]{not_shown_count}[/][i] attribute(s) not shown.[/i] Run [b][magenta]inspect[/]([not b]inspect[/])[/b] for options."
210
+ )
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/_log_render.py ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from datetime import datetime
2
+ from typing import Iterable, List, Optional, TYPE_CHECKING, Union, Callable
3
+
4
+
5
+ from .text import Text, TextType
6
+
7
+ if TYPE_CHECKING:
8
+ from .console import Console, ConsoleRenderable, RenderableType
9
+ from .table import Table
10
+
11
+ FormatTimeCallable = Callable[[datetime], Text]
12
+
13
+
14
+ class LogRender:
15
+ def __init__(
16
+ self,
17
+ show_time: bool = True,
18
+ show_level: bool = False,
19
+ show_path: bool = True,
20
+ time_format: Union[str, FormatTimeCallable] = "[%x %X]",
21
+ omit_repeated_times: bool = True,
22
+ level_width: Optional[int] = 8,
23
+ ) -> None:
24
+ self.show_time = show_time
25
+ self.show_level = show_level
26
+ self.show_path = show_path
27
+ self.time_format = time_format
28
+ self.omit_repeated_times = omit_repeated_times
29
+ self.level_width = level_width
30
+ self._last_time: Optional[Text] = None
31
+
32
+ def __call__(
33
+ self,
34
+ console: "Console",
35
+ renderables: Iterable["ConsoleRenderable"],
36
+ log_time: Optional[datetime] = None,
37
+ time_format: Optional[Union[str, FormatTimeCallable]] = None,
38
+ level: TextType = "",
39
+ path: Optional[str] = None,
40
+ line_no: Optional[int] = None,
41
+ link_path: Optional[str] = None,
42
+ ) -> "Table":
43
+ from .containers import Renderables
44
+ from .table import Table
45
+
46
+ output = Table.grid(padding=(0, 1))
47
+ output.expand = True
48
+ if self.show_time:
49
+ output.add_column(style="log.time")
50
+ if self.show_level:
51
+ output.add_column(style="log.level", width=self.level_width)
52
+ output.add_column(ratio=1, style="log.message", overflow="fold")
53
+ if self.show_path and path:
54
+ output.add_column(style="log.path")
55
+ row: List["RenderableType"] = []
56
+ if self.show_time:
57
+ log_time = log_time or console.get_datetime()
58
+ time_format = time_format or self.time_format
59
+ if callable(time_format):
60
+ log_time_display = time_format(log_time)
61
+ else:
62
+ log_time_display = Text(log_time.strftime(time_format))
63
+ if log_time_display == self._last_time and self.omit_repeated_times:
64
+ row.append(Text(" " * len(log_time_display)))
65
+ else:
66
+ row.append(log_time_display)
67
+ self._last_time = log_time_display
68
+ if self.show_level:
69
+ row.append(level)
70
+
71
+ row.append(Renderables(renderables))
72
+ if self.show_path and path:
73
+ path_text = Text()
74
+ path_text.append(
75
+ path, style=f"link file://{link_path}" if link_path else ""
76
+ )
77
+ if line_no:
78
+ path_text.append(":")
79
+ path_text.append(
80
+ f"{line_no}",
81
+ style=f"link file://{link_path}#{line_no}" if link_path else "",
82
+ )
83
+ row.append(path_text)
84
+
85
+ output.add_row(*row)
86
+ return output
87
+
88
+
89
+ if __name__ == "__main__": # pragma: no cover
90
+ from pip._vendor.rich.console import Console
91
+
92
+ c = Console()
93
+ c.print("[on blue]Hello", justify="right")
94
+ c.log("[on blue]hello", justify="right")
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/_lru_cache.py ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from collections import OrderedDict
2
+ from typing import Dict, Generic, TypeVar
3
+
4
+
5
+ CacheKey = TypeVar("CacheKey")
6
+ CacheValue = TypeVar("CacheValue")
7
+
8
+
9
+ class LRUCache(Generic[CacheKey, CacheValue], OrderedDict): # type: ignore # https://github.com/python/mypy/issues/6904
10
+ """
11
+ A dictionary-like container that stores a given maximum items.
12
+
13
+ If an additional item is added when the LRUCache is full, the least
14
+ recently used key is discarded to make room for the new item.
15
+
16
+ """
17
+
18
+ def __init__(self, cache_size: int) -> None:
19
+ self.cache_size = cache_size
20
+ super(LRUCache, self).__init__()
21
+
22
+ def __setitem__(self, key: CacheKey, value: CacheValue) -> None:
23
+ """Store a new views, potentially discarding an old value."""
24
+ if key not in self:
25
+ if len(self) >= self.cache_size:
26
+ self.popitem(last=False)
27
+ OrderedDict.__setitem__(self, key, value)
28
+
29
+ def __getitem__(self: Dict[CacheKey, CacheValue], key: CacheKey) -> CacheValue:
30
+ """Gets the item, but also makes it most recent."""
31
+ value: CacheValue = OrderedDict.__getitem__(self, key)
32
+ OrderedDict.__delitem__(self, key)
33
+ OrderedDict.__setitem__(self, key, value)
34
+ return value
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/_palettes.py ADDED
@@ -0,0 +1,309 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from .palette import Palette
2
+
3
+
4
+ # Taken from https://en.wikipedia.org/wiki/ANSI_escape_code (Windows 10 column)
5
+ WINDOWS_PALETTE = Palette(
6
+ [
7
+ (12, 12, 12),
8
+ (197, 15, 31),
9
+ (19, 161, 14),
10
+ (193, 156, 0),
11
+ (0, 55, 218),
12
+ (136, 23, 152),
13
+ (58, 150, 221),
14
+ (204, 204, 204),
15
+ (118, 118, 118),
16
+ (231, 72, 86),
17
+ (22, 198, 12),
18
+ (249, 241, 165),
19
+ (59, 120, 255),
20
+ (180, 0, 158),
21
+ (97, 214, 214),
22
+ (242, 242, 242),
23
+ ]
24
+ )
25
+
26
+ # # The standard ansi colors (including bright variants)
27
+ STANDARD_PALETTE = Palette(
28
+ [
29
+ (0, 0, 0),
30
+ (170, 0, 0),
31
+ (0, 170, 0),
32
+ (170, 85, 0),
33
+ (0, 0, 170),
34
+ (170, 0, 170),
35
+ (0, 170, 170),
36
+ (170, 170, 170),
37
+ (85, 85, 85),
38
+ (255, 85, 85),
39
+ (85, 255, 85),
40
+ (255, 255, 85),
41
+ (85, 85, 255),
42
+ (255, 85, 255),
43
+ (85, 255, 255),
44
+ (255, 255, 255),
45
+ ]
46
+ )
47
+
48
+
49
+ # The 256 color palette
50
+ EIGHT_BIT_PALETTE = Palette(
51
+ [
52
+ (0, 0, 0),
53
+ (128, 0, 0),
54
+ (0, 128, 0),
55
+ (128, 128, 0),
56
+ (0, 0, 128),
57
+ (128, 0, 128),
58
+ (0, 128, 128),
59
+ (192, 192, 192),
60
+ (128, 128, 128),
61
+ (255, 0, 0),
62
+ (0, 255, 0),
63
+ (255, 255, 0),
64
+ (0, 0, 255),
65
+ (255, 0, 255),
66
+ (0, 255, 255),
67
+ (255, 255, 255),
68
+ (0, 0, 0),
69
+ (0, 0, 95),
70
+ (0, 0, 135),
71
+ (0, 0, 175),
72
+ (0, 0, 215),
73
+ (0, 0, 255),
74
+ (0, 95, 0),
75
+ (0, 95, 95),
76
+ (0, 95, 135),
77
+ (0, 95, 175),
78
+ (0, 95, 215),
79
+ (0, 95, 255),
80
+ (0, 135, 0),
81
+ (0, 135, 95),
82
+ (0, 135, 135),
83
+ (0, 135, 175),
84
+ (0, 135, 215),
85
+ (0, 135, 255),
86
+ (0, 175, 0),
87
+ (0, 175, 95),
88
+ (0, 175, 135),
89
+ (0, 175, 175),
90
+ (0, 175, 215),
91
+ (0, 175, 255),
92
+ (0, 215, 0),
93
+ (0, 215, 95),
94
+ (0, 215, 135),
95
+ (0, 215, 175),
96
+ (0, 215, 215),
97
+ (0, 215, 255),
98
+ (0, 255, 0),
99
+ (0, 255, 95),
100
+ (0, 255, 135),
101
+ (0, 255, 175),
102
+ (0, 255, 215),
103
+ (0, 255, 255),
104
+ (95, 0, 0),
105
+ (95, 0, 95),
106
+ (95, 0, 135),
107
+ (95, 0, 175),
108
+ (95, 0, 215),
109
+ (95, 0, 255),
110
+ (95, 95, 0),
111
+ (95, 95, 95),
112
+ (95, 95, 135),
113
+ (95, 95, 175),
114
+ (95, 95, 215),
115
+ (95, 95, 255),
116
+ (95, 135, 0),
117
+ (95, 135, 95),
118
+ (95, 135, 135),
119
+ (95, 135, 175),
120
+ (95, 135, 215),
121
+ (95, 135, 255),
122
+ (95, 175, 0),
123
+ (95, 175, 95),
124
+ (95, 175, 135),
125
+ (95, 175, 175),
126
+ (95, 175, 215),
127
+ (95, 175, 255),
128
+ (95, 215, 0),
129
+ (95, 215, 95),
130
+ (95, 215, 135),
131
+ (95, 215, 175),
132
+ (95, 215, 215),
133
+ (95, 215, 255),
134
+ (95, 255, 0),
135
+ (95, 255, 95),
136
+ (95, 255, 135),
137
+ (95, 255, 175),
138
+ (95, 255, 215),
139
+ (95, 255, 255),
140
+ (135, 0, 0),
141
+ (135, 0, 95),
142
+ (135, 0, 135),
143
+ (135, 0, 175),
144
+ (135, 0, 215),
145
+ (135, 0, 255),
146
+ (135, 95, 0),
147
+ (135, 95, 95),
148
+ (135, 95, 135),
149
+ (135, 95, 175),
150
+ (135, 95, 215),
151
+ (135, 95, 255),
152
+ (135, 135, 0),
153
+ (135, 135, 95),
154
+ (135, 135, 135),
155
+ (135, 135, 175),
156
+ (135, 135, 215),
157
+ (135, 135, 255),
158
+ (135, 175, 0),
159
+ (135, 175, 95),
160
+ (135, 175, 135),
161
+ (135, 175, 175),
162
+ (135, 175, 215),
163
+ (135, 175, 255),
164
+ (135, 215, 0),
165
+ (135, 215, 95),
166
+ (135, 215, 135),
167
+ (135, 215, 175),
168
+ (135, 215, 215),
169
+ (135, 215, 255),
170
+ (135, 255, 0),
171
+ (135, 255, 95),
172
+ (135, 255, 135),
173
+ (135, 255, 175),
174
+ (135, 255, 215),
175
+ (135, 255, 255),
176
+ (175, 0, 0),
177
+ (175, 0, 95),
178
+ (175, 0, 135),
179
+ (175, 0, 175),
180
+ (175, 0, 215),
181
+ (175, 0, 255),
182
+ (175, 95, 0),
183
+ (175, 95, 95),
184
+ (175, 95, 135),
185
+ (175, 95, 175),
186
+ (175, 95, 215),
187
+ (175, 95, 255),
188
+ (175, 135, 0),
189
+ (175, 135, 95),
190
+ (175, 135, 135),
191
+ (175, 135, 175),
192
+ (175, 135, 215),
193
+ (175, 135, 255),
194
+ (175, 175, 0),
195
+ (175, 175, 95),
196
+ (175, 175, 135),
197
+ (175, 175, 175),
198
+ (175, 175, 215),
199
+ (175, 175, 255),
200
+ (175, 215, 0),
201
+ (175, 215, 95),
202
+ (175, 215, 135),
203
+ (175, 215, 175),
204
+ (175, 215, 215),
205
+ (175, 215, 255),
206
+ (175, 255, 0),
207
+ (175, 255, 95),
208
+ (175, 255, 135),
209
+ (175, 255, 175),
210
+ (175, 255, 215),
211
+ (175, 255, 255),
212
+ (215, 0, 0),
213
+ (215, 0, 95),
214
+ (215, 0, 135),
215
+ (215, 0, 175),
216
+ (215, 0, 215),
217
+ (215, 0, 255),
218
+ (215, 95, 0),
219
+ (215, 95, 95),
220
+ (215, 95, 135),
221
+ (215, 95, 175),
222
+ (215, 95, 215),
223
+ (215, 95, 255),
224
+ (215, 135, 0),
225
+ (215, 135, 95),
226
+ (215, 135, 135),
227
+ (215, 135, 175),
228
+ (215, 135, 215),
229
+ (215, 135, 255),
230
+ (215, 175, 0),
231
+ (215, 175, 95),
232
+ (215, 175, 135),
233
+ (215, 175, 175),
234
+ (215, 175, 215),
235
+ (215, 175, 255),
236
+ (215, 215, 0),
237
+ (215, 215, 95),
238
+ (215, 215, 135),
239
+ (215, 215, 175),
240
+ (215, 215, 215),
241
+ (215, 215, 255),
242
+ (215, 255, 0),
243
+ (215, 255, 95),
244
+ (215, 255, 135),
245
+ (215, 255, 175),
246
+ (215, 255, 215),
247
+ (215, 255, 255),
248
+ (255, 0, 0),
249
+ (255, 0, 95),
250
+ (255, 0, 135),
251
+ (255, 0, 175),
252
+ (255, 0, 215),
253
+ (255, 0, 255),
254
+ (255, 95, 0),
255
+ (255, 95, 95),
256
+ (255, 95, 135),
257
+ (255, 95, 175),
258
+ (255, 95, 215),
259
+ (255, 95, 255),
260
+ (255, 135, 0),
261
+ (255, 135, 95),
262
+ (255, 135, 135),
263
+ (255, 135, 175),
264
+ (255, 135, 215),
265
+ (255, 135, 255),
266
+ (255, 175, 0),
267
+ (255, 175, 95),
268
+ (255, 175, 135),
269
+ (255, 175, 175),
270
+ (255, 175, 215),
271
+ (255, 175, 255),
272
+ (255, 215, 0),
273
+ (255, 215, 95),
274
+ (255, 215, 135),
275
+ (255, 215, 175),
276
+ (255, 215, 215),
277
+ (255, 215, 255),
278
+ (255, 255, 0),
279
+ (255, 255, 95),
280
+ (255, 255, 135),
281
+ (255, 255, 175),
282
+ (255, 255, 215),
283
+ (255, 255, 255),
284
+ (8, 8, 8),
285
+ (18, 18, 18),
286
+ (28, 28, 28),
287
+ (38, 38, 38),
288
+ (48, 48, 48),
289
+ (58, 58, 58),
290
+ (68, 68, 68),
291
+ (78, 78, 78),
292
+ (88, 88, 88),
293
+ (98, 98, 98),
294
+ (108, 108, 108),
295
+ (118, 118, 118),
296
+ (128, 128, 128),
297
+ (138, 138, 138),
298
+ (148, 148, 148),
299
+ (158, 158, 158),
300
+ (168, 168, 168),
301
+ (178, 178, 178),
302
+ (188, 188, 188),
303
+ (198, 198, 198),
304
+ (208, 208, 208),
305
+ (218, 218, 218),
306
+ (228, 228, 228),
307
+ (238, 238, 238),
308
+ ]
309
+ )
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/_pick.py ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Optional
2
+
3
+
4
+ def pick_bool(*values: Optional[bool]) -> bool:
5
+ """Pick the first non-none bool or return the last value.
6
+
7
+ Args:
8
+ *values (bool): Any number of boolean or None values.
9
+
10
+ Returns:
11
+ bool: First non-none boolean.
12
+ """
13
+ assert values, "1 or more values required"
14
+ for value in values:
15
+ if value is not None:
16
+ return value
17
+ return bool(value)
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/_ratio.py ADDED
@@ -0,0 +1,160 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import sys
2
+ from fractions import Fraction
3
+ from math import ceil
4
+ from typing import cast, List, Optional, Sequence
5
+
6
+ if sys.version_info >= (3, 8):
7
+ from typing import Protocol
8
+ else:
9
+ from pip._vendor.typing_extensions import Protocol # pragma: no cover
10
+
11
+
12
+ class Edge(Protocol):
13
+ """Any object that defines an edge (such as Layout)."""
14
+
15
+ size: Optional[int] = None
16
+ ratio: int = 1
17
+ minimum_size: int = 1
18
+
19
+
20
+ def ratio_resolve(total: int, edges: Sequence[Edge]) -> List[int]:
21
+ """Divide total space to satisfy size, ratio, and minimum_size, constraints.
22
+
23
+ The returned list of integers should add up to total in most cases, unless it is
24
+ impossible to satisfy all the constraints. For instance, if there are two edges
25
+ with a minimum size of 20 each and `total` is 30 then the returned list will be
26
+ greater than total. In practice, this would mean that a Layout object would
27
+ clip the rows that would overflow the screen height.
28
+
29
+ Args:
30
+ total (int): Total number of characters.
31
+ edges (List[Edge]): Edges within total space.
32
+
33
+ Returns:
34
+ List[int]: Number of characters for each edge.
35
+ """
36
+ # Size of edge or None for yet to be determined
37
+ sizes = [(edge.size or None) for edge in edges]
38
+
39
+ _Fraction = Fraction
40
+
41
+ # While any edges haven't been calculated
42
+ while None in sizes:
43
+ # Get flexible edges and index to map these back on to sizes list
44
+ flexible_edges = [
45
+ (index, edge)
46
+ for index, (size, edge) in enumerate(zip(sizes, edges))
47
+ if size is None
48
+ ]
49
+ # Remaining space in total
50
+ remaining = total - sum(size or 0 for size in sizes)
51
+ if remaining <= 0:
52
+ # No room for flexible edges
53
+ return [
54
+ ((edge.minimum_size or 1) if size is None else size)
55
+ for size, edge in zip(sizes, edges)
56
+ ]
57
+ # Calculate number of characters in a ratio portion
58
+ portion = _Fraction(
59
+ remaining, sum((edge.ratio or 1) for _, edge in flexible_edges)
60
+ )
61
+
62
+ # If any edges will be less than their minimum, replace size with the minimum
63
+ for index, edge in flexible_edges:
64
+ if portion * edge.ratio <= edge.minimum_size:
65
+ sizes[index] = edge.minimum_size
66
+ # New fixed size will invalidate calculations, so we need to repeat the process
67
+ break
68
+ else:
69
+ # Distribute flexible space and compensate for rounding error
70
+ # Since edge sizes can only be integers we need to add the remainder
71
+ # to the following line
72
+ remainder = _Fraction(0)
73
+ for index, edge in flexible_edges:
74
+ size, remainder = divmod(portion * edge.ratio + remainder, 1)
75
+ sizes[index] = size
76
+ break
77
+ # Sizes now contains integers only
78
+ return cast(List[int], sizes)
79
+
80
+
81
+ def ratio_reduce(
82
+ total: int, ratios: List[int], maximums: List[int], values: List[int]
83
+ ) -> List[int]:
84
+ """Divide an integer total in to parts based on ratios.
85
+
86
+ Args:
87
+ total (int): The total to divide.
88
+ ratios (List[int]): A list of integer ratios.
89
+ maximums (List[int]): List of maximums values for each slot.
90
+ values (List[int]): List of values
91
+
92
+ Returns:
93
+ List[int]: A list of integers guaranteed to sum to total.
94
+ """
95
+ ratios = [ratio if _max else 0 for ratio, _max in zip(ratios, maximums)]
96
+ total_ratio = sum(ratios)
97
+ if not total_ratio:
98
+ return values[:]
99
+ total_remaining = total
100
+ result: List[int] = []
101
+ append = result.append
102
+ for ratio, maximum, value in zip(ratios, maximums, values):
103
+ if ratio and total_ratio > 0:
104
+ distributed = min(maximum, round(ratio * total_remaining / total_ratio))
105
+ append(value - distributed)
106
+ total_remaining -= distributed
107
+ total_ratio -= ratio
108
+ else:
109
+ append(value)
110
+ return result
111
+
112
+
113
+ def ratio_distribute(
114
+ total: int, ratios: List[int], minimums: Optional[List[int]] = None
115
+ ) -> List[int]:
116
+ """Distribute an integer total in to parts based on ratios.
117
+
118
+ Args:
119
+ total (int): The total to divide.
120
+ ratios (List[int]): A list of integer ratios.
121
+ minimums (List[int]): List of minimum values for each slot.
122
+
123
+ Returns:
124
+ List[int]: A list of integers guaranteed to sum to total.
125
+ """
126
+ if minimums:
127
+ ratios = [ratio if _min else 0 for ratio, _min in zip(ratios, minimums)]
128
+ total_ratio = sum(ratios)
129
+ assert total_ratio > 0, "Sum of ratios must be > 0"
130
+
131
+ total_remaining = total
132
+ distributed_total: List[int] = []
133
+ append = distributed_total.append
134
+ if minimums is None:
135
+ _minimums = [0] * len(ratios)
136
+ else:
137
+ _minimums = minimums
138
+ for ratio, minimum in zip(ratios, _minimums):
139
+ if total_ratio > 0:
140
+ distributed = max(minimum, ceil(ratio * total_remaining / total_ratio))
141
+ else:
142
+ distributed = total_remaining
143
+ append(distributed)
144
+ total_ratio -= ratio
145
+ total_remaining -= distributed
146
+ return distributed_total
147
+
148
+
149
+ if __name__ == "__main__":
150
+ from dataclasses import dataclass
151
+
152
+ @dataclass
153
+ class E:
154
+
155
+ size: Optional[int] = None
156
+ ratio: int = 1
157
+ minimum_size: int = 1
158
+
159
+ resolved = ratio_resolve(110, [E(None, 1, 1), E(None, 1, 1), E(None, 1, 1)])
160
+ print(sum(resolved))
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/_stack.py ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import List, TypeVar
2
+
3
+ T = TypeVar("T")
4
+
5
+
6
+ class Stack(List[T]):
7
+ """A small shim over builtin list."""
8
+
9
+ @property
10
+ def top(self) -> T:
11
+ """Get top of stack."""
12
+ return self[-1]
13
+
14
+ def push(self, item: T) -> None:
15
+ """Push an item on to the stack (append in stack nomenclature)."""
16
+ self.append(item)
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/_timer.py ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ Timer context manager, only used in debug.
3
+
4
+ """
5
+
6
+ from time import time
7
+
8
+ import contextlib
9
+ from typing import Generator
10
+
11
+
12
+ @contextlib.contextmanager
13
+ def timer(subject: str = "time") -> Generator[None, None, None]:
14
+ """print the elapsed time. (only used in debugging)"""
15
+ start = time()
16
+ yield
17
+ elapsed = time() - start
18
+ elapsed_ms = elapsed * 1000
19
+ print(f"{subject} elapsed {elapsed_ms:.1f}ms")
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/_windows.py ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import sys
2
+ from dataclasses import dataclass
3
+
4
+
5
+ @dataclass
6
+ class WindowsConsoleFeatures:
7
+ """Windows features available."""
8
+
9
+ vt: bool = False
10
+ """The console supports VT codes."""
11
+ truecolor: bool = False
12
+ """The console supports truecolor."""
13
+
14
+
15
+ try:
16
+ import ctypes
17
+ from ctypes import LibraryLoader, wintypes
18
+
19
+ if sys.platform == "win32":
20
+ windll = LibraryLoader(ctypes.WinDLL)
21
+ else:
22
+ windll = None
23
+ raise ImportError("Not windows")
24
+ except (AttributeError, ImportError, ValueError):
25
+
26
+ # Fallback if we can't load the Windows DLL
27
+ def get_windows_console_features() -> WindowsConsoleFeatures:
28
+ features = WindowsConsoleFeatures()
29
+ return features
30
+
31
+ else:
32
+
33
+ STDOUT = -11
34
+ ENABLE_VIRTUAL_TERMINAL_PROCESSING = 4
35
+ _GetConsoleMode = windll.kernel32.GetConsoleMode
36
+ _GetConsoleMode.argtypes = [wintypes.HANDLE, wintypes.LPDWORD]
37
+ _GetConsoleMode.restype = wintypes.BOOL
38
+
39
+ _GetStdHandle = windll.kernel32.GetStdHandle
40
+ _GetStdHandle.argtypes = [
41
+ wintypes.DWORD,
42
+ ]
43
+ _GetStdHandle.restype = wintypes.HANDLE
44
+
45
+ def get_windows_console_features() -> WindowsConsoleFeatures:
46
+ """Get windows console features.
47
+
48
+ Returns:
49
+ WindowsConsoleFeatures: An instance of WindowsConsoleFeatures.
50
+ """
51
+ handle = _GetStdHandle(STDOUT)
52
+ console_mode = wintypes.DWORD()
53
+ result = _GetConsoleMode(handle, console_mode)
54
+ vt = bool(result and console_mode.value & ENABLE_VIRTUAL_TERMINAL_PROCESSING)
55
+ truecolor = False
56
+ if vt:
57
+ win_version = sys.getwindowsversion()
58
+ truecolor = win_version.major > 10 or (
59
+ win_version.major == 10 and win_version.build >= 15063
60
+ )
61
+ features = WindowsConsoleFeatures(vt=vt, truecolor=truecolor)
62
+ return features
63
+
64
+
65
+ if __name__ == "__main__":
66
+ import platform
67
+
68
+ features = get_windows_console_features()
69
+ from pip._vendor.rich import print
70
+
71
+ print(f'platform="{platform.system()}"')
72
+ print(repr(features))
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/_wrap.py ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import re
2
+ from typing import Iterable, List, Tuple
3
+
4
+ from .cells import cell_len, chop_cells
5
+ from ._loop import loop_last
6
+
7
+ re_word = re.compile(r"\s*\S+\s*")
8
+
9
+
10
+ def words(text: str) -> Iterable[Tuple[int, int, str]]:
11
+ position = 0
12
+ word_match = re_word.match(text, position)
13
+ while word_match is not None:
14
+ start, end = word_match.span()
15
+ word = word_match.group(0)
16
+ yield start, end, word
17
+ word_match = re_word.match(text, end)
18
+
19
+
20
+ def divide_line(text: str, width: int, fold: bool = True) -> List[int]:
21
+ divides: List[int] = []
22
+ append = divides.append
23
+ line_position = 0
24
+ _cell_len = cell_len
25
+ for start, _end, word in words(text):
26
+ word_length = _cell_len(word.rstrip())
27
+ if line_position + word_length > width:
28
+ if word_length > width:
29
+ if fold:
30
+ for last, line in loop_last(
31
+ chop_cells(word, width, position=line_position)
32
+ ):
33
+ if last:
34
+ line_position = _cell_len(line)
35
+ else:
36
+ start += len(line)
37
+ append(start)
38
+ else:
39
+ if start:
40
+ append(start)
41
+ line_position = _cell_len(word)
42
+ elif line_position and start:
43
+ append(start)
44
+ line_position = _cell_len(word)
45
+ else:
46
+ line_position += _cell_len(word)
47
+ return divides
48
+
49
+
50
+ if __name__ == "__main__": # pragma: no cover
51
+ from .console import Console
52
+
53
+ console = Console(width=10)
54
+ console.print("12345 abcdefghijklmnopqrstuvwyxzABCDEFGHIJKLMNOPQRSTUVWXYZ 12345")
55
+ print(chop_cells("abcdefghijklmnopqrstuvwxyz", 10, position=2))
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/ansi.py ADDED
@@ -0,0 +1,228 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from contextlib import suppress
2
+ import re
3
+ from typing import Iterable, NamedTuple
4
+
5
+ from .color import Color
6
+ from .style import Style
7
+ from .text import Text
8
+
9
+ re_ansi = re.compile(r"(?:\x1b\[(.*?)m)|(?:\x1b\](.*?)\x1b\\)")
10
+ re_csi = re.compile(r"\x1B(?:[@-Z\\-_]|\[[0-?]*[ -/]*[@-~])")
11
+
12
+
13
+ class _AnsiToken(NamedTuple):
14
+ """Result of ansi tokenized string."""
15
+
16
+ plain: str = ""
17
+ sgr: str = ""
18
+ osc: str = ""
19
+
20
+
21
+ def _ansi_tokenize(ansi_text: str) -> Iterable[_AnsiToken]:
22
+ """Tokenize a string in to plain text and ANSI codes.
23
+
24
+ Args:
25
+ ansi_text (str): A String containing ANSI codes.
26
+
27
+ Yields:
28
+ AnsiToken: A named tuple of (plain, sgr, osc)
29
+ """
30
+
31
+ def remove_csi(ansi_text: str) -> str:
32
+ """Remove unknown CSI sequences."""
33
+ return re_csi.sub("", ansi_text)
34
+
35
+ position = 0
36
+ for match in re_ansi.finditer(ansi_text):
37
+ start, end = match.span(0)
38
+ sgr, osc = match.groups()
39
+ if start > position:
40
+ yield _AnsiToken(remove_csi(ansi_text[position:start]))
41
+ yield _AnsiToken("", sgr, osc)
42
+ position = end
43
+ if position < len(ansi_text):
44
+ yield _AnsiToken(remove_csi(ansi_text[position:]))
45
+
46
+
47
+ SGR_STYLE_MAP = {
48
+ 1: "bold",
49
+ 2: "dim",
50
+ 3: "italic",
51
+ 4: "underline",
52
+ 5: "blink",
53
+ 6: "blink2",
54
+ 7: "reverse",
55
+ 8: "conceal",
56
+ 9: "strike",
57
+ 21: "underline2",
58
+ 22: "not dim not bold",
59
+ 23: "not italic",
60
+ 24: "not underline",
61
+ 25: "not blink",
62
+ 26: "not blink2",
63
+ 27: "not reverse",
64
+ 28: "not conceal",
65
+ 29: "not strike",
66
+ 30: "color(0)",
67
+ 31: "color(1)",
68
+ 32: "color(2)",
69
+ 33: "color(3)",
70
+ 34: "color(4)",
71
+ 35: "color(5)",
72
+ 36: "color(6)",
73
+ 37: "color(7)",
74
+ 39: "default",
75
+ 40: "on color(0)",
76
+ 41: "on color(1)",
77
+ 42: "on color(2)",
78
+ 43: "on color(3)",
79
+ 44: "on color(4)",
80
+ 45: "on color(5)",
81
+ 46: "on color(6)",
82
+ 47: "on color(7)",
83
+ 49: "on default",
84
+ 51: "frame",
85
+ 52: "encircle",
86
+ 53: "overline",
87
+ 54: "not frame not encircle",
88
+ 55: "not overline",
89
+ 90: "color(8)",
90
+ 91: "color(9)",
91
+ 92: "color(10)",
92
+ 93: "color(11)",
93
+ 94: "color(12)",
94
+ 95: "color(13)",
95
+ 96: "color(14)",
96
+ 97: "color(15)",
97
+ 100: "on color(8)",
98
+ 101: "on color(9)",
99
+ 102: "on color(10)",
100
+ 103: "on color(11)",
101
+ 104: "on color(12)",
102
+ 105: "on color(13)",
103
+ 106: "on color(14)",
104
+ 107: "on color(15)",
105
+ }
106
+
107
+
108
+ class AnsiDecoder:
109
+ """Translate ANSI code in to styled Text."""
110
+
111
+ def __init__(self) -> None:
112
+ self.style = Style.null()
113
+
114
+ def decode(self, terminal_text: str) -> Iterable[Text]:
115
+ """Decode ANSI codes in an interable of lines.
116
+
117
+ Args:
118
+ lines (Iterable[str]): An iterable of lines of terminal output.
119
+
120
+ Yields:
121
+ Text: Marked up Text.
122
+ """
123
+ for line in terminal_text.splitlines():
124
+ yield self.decode_line(line)
125
+
126
+ def decode_line(self, line: str) -> Text:
127
+ """Decode a line containing ansi codes.
128
+
129
+ Args:
130
+ line (str): A line of terminal output.
131
+
132
+ Returns:
133
+ Text: A Text instance marked up according to ansi codes.
134
+ """
135
+ from_ansi = Color.from_ansi
136
+ from_rgb = Color.from_rgb
137
+ _Style = Style
138
+ text = Text()
139
+ append = text.append
140
+ line = line.rsplit("\r", 1)[-1]
141
+ for token in _ansi_tokenize(line):
142
+ plain_text, sgr, osc = token
143
+ if plain_text:
144
+ append(plain_text, self.style or None)
145
+ elif osc:
146
+ if osc.startswith("8;"):
147
+ _params, semicolon, link = osc[2:].partition(";")
148
+ if semicolon:
149
+ self.style = self.style.update_link(link or None)
150
+ elif sgr:
151
+ # Translate in to semi-colon separated codes
152
+ # Ignore invalid codes, because we want to be lenient
153
+ codes = [
154
+ min(255, int(_code)) for _code in sgr.split(";") if _code.isdigit()
155
+ ]
156
+ iter_codes = iter(codes)
157
+ for code in iter_codes:
158
+ if code == 0:
159
+ # reset
160
+ self.style = _Style.null()
161
+ elif code in SGR_STYLE_MAP:
162
+ # styles
163
+ self.style += _Style.parse(SGR_STYLE_MAP[code])
164
+ elif code == 38:
165
+ #  Foreground
166
+ with suppress(StopIteration):
167
+ color_type = next(iter_codes)
168
+ if color_type == 5:
169
+ self.style += _Style.from_color(
170
+ from_ansi(next(iter_codes))
171
+ )
172
+ elif color_type == 2:
173
+ self.style += _Style.from_color(
174
+ from_rgb(
175
+ next(iter_codes),
176
+ next(iter_codes),
177
+ next(iter_codes),
178
+ )
179
+ )
180
+ elif code == 48:
181
+ # Background
182
+ with suppress(StopIteration):
183
+ color_type = next(iter_codes)
184
+ if color_type == 5:
185
+ self.style += _Style.from_color(
186
+ None, from_ansi(next(iter_codes))
187
+ )
188
+ elif color_type == 2:
189
+ self.style += _Style.from_color(
190
+ None,
191
+ from_rgb(
192
+ next(iter_codes),
193
+ next(iter_codes),
194
+ next(iter_codes),
195
+ ),
196
+ )
197
+
198
+ return text
199
+
200
+
201
+ if __name__ == "__main__": # pragma: no cover
202
+ import pty
203
+ import io
204
+ import os
205
+ import sys
206
+
207
+ decoder = AnsiDecoder()
208
+
209
+ stdout = io.BytesIO()
210
+
211
+ def read(fd: int) -> bytes:
212
+ data = os.read(fd, 1024)
213
+ stdout.write(data)
214
+ return data
215
+
216
+ pty.spawn(sys.argv[1:], read)
217
+
218
+ from .console import Console
219
+
220
+ console = Console(record=True)
221
+
222
+ stdout_result = stdout.getvalue().decode("utf-8")
223
+ print(stdout_result)
224
+
225
+ for line in decoder.decode(stdout_result):
226
+ console.print(line)
227
+
228
+ console.save_html("stdout.html")
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/bar.py ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Optional, Union
2
+
3
+ from .color import Color
4
+ from .console import Console, ConsoleOptions, RenderResult
5
+ from .jupyter import JupyterMixin
6
+ from .measure import Measurement
7
+ from .segment import Segment
8
+ from .style import Style
9
+
10
+ # There are left-aligned characters for 1/8 to 7/8, but
11
+ # the right-aligned characters exist only for 1/8 and 4/8.
12
+ BEGIN_BLOCK_ELEMENTS = ["█", "█", "█", "▐", "▐", "▐", "▕", "▕"]
13
+ END_BLOCK_ELEMENTS = [" ", "▏", "▎", "▍", "▌", "▋", "▊", "▉"]
14
+ FULL_BLOCK = "█"
15
+
16
+
17
+ class Bar(JupyterMixin):
18
+ """Renders a solid block bar.
19
+
20
+ Args:
21
+ size (float): Value for the end of the bar.
22
+ begin (float): Begin point (between 0 and size, inclusive).
23
+ end (float): End point (between 0 and size, inclusive).
24
+ width (int, optional): Width of the bar, or ``None`` for maximum width. Defaults to None.
25
+ color (Union[Color, str], optional): Color of the bar. Defaults to "default".
26
+ bgcolor (Union[Color, str], optional): Color of bar background. Defaults to "default".
27
+ """
28
+
29
+ def __init__(
30
+ self,
31
+ size: float,
32
+ begin: float,
33
+ end: float,
34
+ *,
35
+ width: Optional[int] = None,
36
+ color: Union[Color, str] = "default",
37
+ bgcolor: Union[Color, str] = "default",
38
+ ):
39
+ self.size = size
40
+ self.begin = max(begin, 0)
41
+ self.end = min(end, size)
42
+ self.width = width
43
+ self.style = Style(color=color, bgcolor=bgcolor)
44
+
45
+ def __repr__(self) -> str:
46
+ return f"Bar({self.size}, {self.begin}, {self.end})"
47
+
48
+ def __rich_console__(
49
+ self, console: Console, options: ConsoleOptions
50
+ ) -> RenderResult:
51
+
52
+ width = min(
53
+ self.width if self.width is not None else options.max_width,
54
+ options.max_width,
55
+ )
56
+
57
+ if self.begin >= self.end:
58
+ yield Segment(" " * width, self.style)
59
+ yield Segment.line()
60
+ return
61
+
62
+ prefix_complete_eights = int(width * 8 * self.begin / self.size)
63
+ prefix_bar_count = prefix_complete_eights // 8
64
+ prefix_eights_count = prefix_complete_eights % 8
65
+
66
+ body_complete_eights = int(width * 8 * self.end / self.size)
67
+ body_bar_count = body_complete_eights // 8
68
+ body_eights_count = body_complete_eights % 8
69
+
70
+ # When start and end fall into the same cell, we ideally should render
71
+ # a symbol that's "center-aligned", but there is no good symbol in Unicode.
72
+ # In this case, we fall back to right-aligned block symbol for simplicity.
73
+
74
+ prefix = " " * prefix_bar_count
75
+ if prefix_eights_count:
76
+ prefix += BEGIN_BLOCK_ELEMENTS[prefix_eights_count]
77
+
78
+ body = FULL_BLOCK * body_bar_count
79
+ if body_eights_count:
80
+ body += END_BLOCK_ELEMENTS[body_eights_count]
81
+
82
+ suffix = " " * (width - len(body))
83
+
84
+ yield Segment(prefix + body[len(prefix) :] + suffix, self.style)
85
+ yield Segment.line()
86
+
87
+ def __rich_measure__(
88
+ self, console: Console, options: ConsoleOptions
89
+ ) -> Measurement:
90
+ return (
91
+ Measurement(self.width, self.width)
92
+ if self.width is not None
93
+ else Measurement(4, options.max_width)
94
+ )
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/box.py ADDED
@@ -0,0 +1,483 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import sys
2
+ from typing import TYPE_CHECKING, Iterable, List
3
+
4
+ if sys.version_info >= (3, 8):
5
+ from typing import Literal
6
+ else:
7
+ from pip._vendor.typing_extensions import Literal # pragma: no cover
8
+
9
+
10
+ from ._loop import loop_last
11
+
12
+ if TYPE_CHECKING:
13
+ from pip._vendor.rich.console import ConsoleOptions
14
+
15
+
16
+ class Box:
17
+ """Defines characters to render boxes.
18
+
19
+ ┌─┬┐ top
20
+ │ ││ head
21
+ ├─┼┤ head_row
22
+ │ ││ mid
23
+ ├─┼┤ row
24
+ ├─┼┤ foot_row
25
+ │ ││ foot
26
+ └─┴┘ bottom
27
+
28
+ Args:
29
+ box (str): Characters making up box.
30
+ ascii (bool, optional): True if this box uses ascii characters only. Default is False.
31
+ """
32
+
33
+ def __init__(self, box: str, *, ascii: bool = False) -> None:
34
+ self._box = box
35
+ self.ascii = ascii
36
+ line1, line2, line3, line4, line5, line6, line7, line8 = box.splitlines()
37
+ # top
38
+ self.top_left, self.top, self.top_divider, self.top_right = iter(line1)
39
+ # head
40
+ self.head_left, _, self.head_vertical, self.head_right = iter(line2)
41
+ # head_row
42
+ (
43
+ self.head_row_left,
44
+ self.head_row_horizontal,
45
+ self.head_row_cross,
46
+ self.head_row_right,
47
+ ) = iter(line3)
48
+
49
+ # mid
50
+ self.mid_left, _, self.mid_vertical, self.mid_right = iter(line4)
51
+ # row
52
+ self.row_left, self.row_horizontal, self.row_cross, self.row_right = iter(line5)
53
+ # foot_row
54
+ (
55
+ self.foot_row_left,
56
+ self.foot_row_horizontal,
57
+ self.foot_row_cross,
58
+ self.foot_row_right,
59
+ ) = iter(line6)
60
+ # foot
61
+ self.foot_left, _, self.foot_vertical, self.foot_right = iter(line7)
62
+ # bottom
63
+ self.bottom_left, self.bottom, self.bottom_divider, self.bottom_right = iter(
64
+ line8
65
+ )
66
+
67
+ def __repr__(self) -> str:
68
+ return "Box(...)"
69
+
70
+ def __str__(self) -> str:
71
+ return self._box
72
+
73
+ def substitute(self, options: "ConsoleOptions", safe: bool = True) -> "Box":
74
+ """Substitute this box for another if it won't render due to platform issues.
75
+
76
+ Args:
77
+ options (ConsoleOptions): Console options used in rendering.
78
+ safe (bool, optional): Substitute this for another Box if there are known problems
79
+ displaying on the platform (currently only relevant on Windows). Default is True.
80
+
81
+ Returns:
82
+ Box: A different Box or the same Box.
83
+ """
84
+ box = self
85
+ if options.legacy_windows and safe:
86
+ box = LEGACY_WINDOWS_SUBSTITUTIONS.get(box, box)
87
+ if options.ascii_only and not box.ascii:
88
+ box = ASCII
89
+ return box
90
+
91
+ def get_top(self, widths: Iterable[int]) -> str:
92
+ """Get the top of a simple box.
93
+
94
+ Args:
95
+ widths (List[int]): Widths of columns.
96
+
97
+ Returns:
98
+ str: A string of box characters.
99
+ """
100
+
101
+ parts: List[str] = []
102
+ append = parts.append
103
+ append(self.top_left)
104
+ for last, width in loop_last(widths):
105
+ append(self.top * width)
106
+ if not last:
107
+ append(self.top_divider)
108
+ append(self.top_right)
109
+ return "".join(parts)
110
+
111
+ def get_row(
112
+ self,
113
+ widths: Iterable[int],
114
+ level: Literal["head", "row", "foot", "mid"] = "row",
115
+ edge: bool = True,
116
+ ) -> str:
117
+ """Get the top of a simple box.
118
+
119
+ Args:
120
+ width (List[int]): Widths of columns.
121
+
122
+ Returns:
123
+ str: A string of box characters.
124
+ """
125
+ if level == "head":
126
+ left = self.head_row_left
127
+ horizontal = self.head_row_horizontal
128
+ cross = self.head_row_cross
129
+ right = self.head_row_right
130
+ elif level == "row":
131
+ left = self.row_left
132
+ horizontal = self.row_horizontal
133
+ cross = self.row_cross
134
+ right = self.row_right
135
+ elif level == "mid":
136
+ left = self.mid_left
137
+ horizontal = " "
138
+ cross = self.mid_vertical
139
+ right = self.mid_right
140
+ elif level == "foot":
141
+ left = self.foot_row_left
142
+ horizontal = self.foot_row_horizontal
143
+ cross = self.foot_row_cross
144
+ right = self.foot_row_right
145
+ else:
146
+ raise ValueError("level must be 'head', 'row' or 'foot'")
147
+
148
+ parts: List[str] = []
149
+ append = parts.append
150
+ if edge:
151
+ append(left)
152
+ for last, width in loop_last(widths):
153
+ append(horizontal * width)
154
+ if not last:
155
+ append(cross)
156
+ if edge:
157
+ append(right)
158
+ return "".join(parts)
159
+
160
+ def get_bottom(self, widths: Iterable[int]) -> str:
161
+ """Get the bottom of a simple box.
162
+
163
+ Args:
164
+ widths (List[int]): Widths of columns.
165
+
166
+ Returns:
167
+ str: A string of box characters.
168
+ """
169
+
170
+ parts: List[str] = []
171
+ append = parts.append
172
+ append(self.bottom_left)
173
+ for last, width in loop_last(widths):
174
+ append(self.bottom * width)
175
+ if not last:
176
+ append(self.bottom_divider)
177
+ append(self.bottom_right)
178
+ return "".join(parts)
179
+
180
+
181
+ ASCII: Box = Box(
182
+ """\
183
+ +--+
184
+ | ||
185
+ |-+|
186
+ | ||
187
+ |-+|
188
+ |-+|
189
+ | ||
190
+ +--+
191
+ """,
192
+ ascii=True,
193
+ )
194
+
195
+ ASCII2: Box = Box(
196
+ """\
197
+ +-++
198
+ | ||
199
+ +-++
200
+ | ||
201
+ +-++
202
+ +-++
203
+ | ||
204
+ +-++
205
+ """,
206
+ ascii=True,
207
+ )
208
+
209
+ ASCII_DOUBLE_HEAD: Box = Box(
210
+ """\
211
+ +-++
212
+ | ||
213
+ +=++
214
+ | ||
215
+ +-++
216
+ +-++
217
+ | ||
218
+ +-++
219
+ """,
220
+ ascii=True,
221
+ )
222
+
223
+ SQUARE: Box = Box(
224
+ """\
225
+ ┌─┬┐
226
+ │ ││
227
+ ├─┼┤
228
+ │ ││
229
+ ├─┼┤
230
+ ├─┼┤
231
+ │ ││
232
+ └─┴┘
233
+ """
234
+ )
235
+
236
+ SQUARE_DOUBLE_HEAD: Box = Box(
237
+ """\
238
+ ┌─┬┐
239
+ │ ││
240
+ ╞═╪╡
241
+ │ ││
242
+ ├─┼┤
243
+ ├─┼┤
244
+ │ ││
245
+ └─┴┘
246
+ """
247
+ )
248
+
249
+ MINIMAL: Box = Box(
250
+ """\
251
+
252
+
253
+ ╶─┼╴
254
+
255
+ ╶─┼╴
256
+ ╶─┼╴
257
+
258
+
259
+ """
260
+ )
261
+
262
+
263
+ MINIMAL_HEAVY_HEAD: Box = Box(
264
+ """\
265
+
266
+
267
+ ╺━┿╸
268
+
269
+ ╶─┼╴
270
+ ╶─┼╴
271
+
272
+
273
+ """
274
+ )
275
+
276
+ MINIMAL_DOUBLE_HEAD: Box = Box(
277
+ """\
278
+
279
+
280
+ ═╪
281
+
282
+ ─┼
283
+ ─┼
284
+
285
+
286
+ """
287
+ )
288
+
289
+
290
+ SIMPLE: Box = Box(
291
+ """\
292
+
293
+
294
+ ──
295
+
296
+
297
+ ──
298
+
299
+
300
+ """
301
+ )
302
+
303
+ SIMPLE_HEAD: Box = Box(
304
+ """\
305
+
306
+
307
+ ──
308
+
309
+
310
+
311
+
312
+
313
+ """
314
+ )
315
+
316
+
317
+ SIMPLE_HEAVY: Box = Box(
318
+ """\
319
+
320
+
321
+ ━━
322
+
323
+
324
+ ━━
325
+
326
+
327
+ """
328
+ )
329
+
330
+
331
+ HORIZONTALS: Box = Box(
332
+ """\
333
+ ──
334
+
335
+ ──
336
+
337
+ ──
338
+ ──
339
+
340
+ ──
341
+ """
342
+ )
343
+
344
+ ROUNDED: Box = Box(
345
+ """\
346
+ ╭─┬╮
347
+ │ ││
348
+ ├─┼┤
349
+ │ ││
350
+ ├─┼┤
351
+ ├─┼┤
352
+ │ ││
353
+ ╰─┴╯
354
+ """
355
+ )
356
+
357
+ HEAVY: Box = Box(
358
+ """\
359
+ ┏━┳┓
360
+ ┃ ┃┃
361
+ ┣━╋┫
362
+ ┃ ┃┃
363
+ ┣━╋┫
364
+ ┣━╋┫
365
+ ┃ ┃┃
366
+ ┗━┻┛
367
+ """
368
+ )
369
+
370
+ HEAVY_EDGE: Box = Box(
371
+ """\
372
+ ┏━┯┓
373
+ ┃ │┃
374
+ ┠─┼┨
375
+ ┃ │┃
376
+ ┠─┼┨
377
+ ┠─┼┨
378
+ ┃ │┃
379
+ ┗━┷┛
380
+ """
381
+ )
382
+
383
+ HEAVY_HEAD: Box = Box(
384
+ """\
385
+ ┏━┳┓
386
+ ┃ ┃┃
387
+ ┡━╇┩
388
+ │ ││
389
+ ├─┼┤
390
+ ├─┼┤
391
+ │ ││
392
+ └─┴┘
393
+ """
394
+ )
395
+
396
+ DOUBLE: Box = Box(
397
+ """\
398
+ ╔═╦╗
399
+ ║ ║║
400
+ ╠═╬╣
401
+ ║ ║║
402
+ ╠═╬╣
403
+ ╠═╬╣
404
+ ║ ║║
405
+ ╚═╩╝
406
+ """
407
+ )
408
+
409
+ DOUBLE_EDGE: Box = Box(
410
+ """\
411
+ ╔═╤╗
412
+ ║ │║
413
+ ╟─┼╢
414
+ ║ │║
415
+ ╟─┼╢
416
+ ╟─┼╢
417
+ ║ │║
418
+ ╚═╧╝
419
+ """
420
+ )
421
+
422
+ # Map Boxes that don't render with raster fonts on to equivalent that do
423
+ LEGACY_WINDOWS_SUBSTITUTIONS = {
424
+ ROUNDED: SQUARE,
425
+ MINIMAL_HEAVY_HEAD: MINIMAL,
426
+ SIMPLE_HEAVY: SIMPLE,
427
+ HEAVY: SQUARE,
428
+ HEAVY_EDGE: SQUARE,
429
+ HEAVY_HEAD: SQUARE,
430
+ }
431
+
432
+
433
+ if __name__ == "__main__": # pragma: no cover
434
+
435
+ from pip._vendor.rich.columns import Columns
436
+ from pip._vendor.rich.panel import Panel
437
+
438
+ from . import box as box
439
+ from .console import Console
440
+ from .table import Table
441
+ from .text import Text
442
+
443
+ console = Console(record=True)
444
+
445
+ BOXES = [
446
+ "ASCII",
447
+ "ASCII2",
448
+ "ASCII_DOUBLE_HEAD",
449
+ "SQUARE",
450
+ "SQUARE_DOUBLE_HEAD",
451
+ "MINIMAL",
452
+ "MINIMAL_HEAVY_HEAD",
453
+ "MINIMAL_DOUBLE_HEAD",
454
+ "SIMPLE",
455
+ "SIMPLE_HEAD",
456
+ "SIMPLE_HEAVY",
457
+ "HORIZONTALS",
458
+ "ROUNDED",
459
+ "HEAVY",
460
+ "HEAVY_EDGE",
461
+ "HEAVY_HEAD",
462
+ "DOUBLE",
463
+ "DOUBLE_EDGE",
464
+ ]
465
+
466
+ console.print(Panel("[bold green]Box Constants", style="green"), justify="center")
467
+ console.print()
468
+
469
+ columns = Columns(expand=True, padding=2)
470
+ for box_name in sorted(BOXES):
471
+ table = Table(
472
+ show_footer=True, style="dim", border_style="not dim", expand=True
473
+ )
474
+ table.add_column("Header 1", "Footer 1")
475
+ table.add_column("Header 2", "Footer 2")
476
+ table.add_row("Cell", "Cell")
477
+ table.add_row("Cell", "Cell")
478
+ table.box = getattr(box, box_name)
479
+ table.title = Text(f"box.{box_name}", style="magenta")
480
+ columns.add_renderable(table)
481
+ console.print(columns)
482
+
483
+ # console.save_html("box.html", inline_styles=True)
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/cells.py ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from functools import lru_cache
2
+ import re
3
+ from typing import Dict, List
4
+
5
+ from ._cell_widths import CELL_WIDTHS
6
+ from ._lru_cache import LRUCache
7
+
8
+ # Regex to match sequence of the most common character ranges
9
+ _is_single_cell_widths = re.compile("^[\u0020-\u006f\u00a0\u02ff\u0370-\u0482]*$").match
10
+
11
+
12
+ def cell_len(text: str, _cache: Dict[str, int] = LRUCache(1024 * 4)) -> int:
13
+ """Get the number of cells required to display text.
14
+
15
+ Args:
16
+ text (str): Text to display.
17
+
18
+ Returns:
19
+ int: Get the number of cells required to display text.
20
+ """
21
+
22
+ if _is_single_cell_widths(text):
23
+ return len(text)
24
+ else:
25
+ cached_result = _cache.get(text, None)
26
+ if cached_result is not None:
27
+ return cached_result
28
+ _get_size = get_character_cell_size
29
+ total_size = sum(_get_size(character) for character in text)
30
+ if len(text) <= 64:
31
+ _cache[text] = total_size
32
+ return total_size
33
+
34
+
35
+ @lru_cache(maxsize=4096)
36
+ def get_character_cell_size(character: str) -> int:
37
+ """Get the cell size of a character.
38
+
39
+ Args:
40
+ character (str): A single character.
41
+
42
+ Returns:
43
+ int: Number of cells (0, 1 or 2) occupied by that character.
44
+ """
45
+ if _is_single_cell_widths(character):
46
+ return 1
47
+
48
+ return _get_codepoint_cell_size(ord(character))
49
+
50
+
51
+ @lru_cache(maxsize=4096)
52
+ def _get_codepoint_cell_size(codepoint: int) -> int:
53
+ """Get the cell size of a character.
54
+
55
+ Args:
56
+ character (str): A single character.
57
+
58
+ Returns:
59
+ int: Number of cells (0, 1 or 2) occupied by that character.
60
+ """
61
+
62
+ _table = CELL_WIDTHS
63
+ lower_bound = 0
64
+ upper_bound = len(_table) - 1
65
+ index = (lower_bound + upper_bound) // 2
66
+ while True:
67
+ start, end, width = _table[index]
68
+ if codepoint < start:
69
+ upper_bound = index - 1
70
+ elif codepoint > end:
71
+ lower_bound = index + 1
72
+ else:
73
+ return 0 if width == -1 else width
74
+ if upper_bound < lower_bound:
75
+ break
76
+ index = (lower_bound + upper_bound) // 2
77
+ return 1
78
+
79
+
80
+ def set_cell_size(text: str, total: int) -> str:
81
+ """Set the length of a string to fit within given number of cells."""
82
+
83
+ if _is_single_cell_widths(text):
84
+ size = len(text)
85
+ if size < total:
86
+ return text + " " * (total - size)
87
+ return text[:total]
88
+
89
+ if not total:
90
+ return ""
91
+ cell_size = cell_len(text)
92
+ if cell_size == total:
93
+ return text
94
+ if cell_size < total:
95
+ return text + " " * (total - cell_size)
96
+
97
+ start = 0
98
+ end = len(text)
99
+
100
+ # Binary search until we find the right size
101
+ while True:
102
+ pos = (start + end) // 2
103
+ before = text[: pos + 1]
104
+ before_len = cell_len(before)
105
+ if before_len == total + 1 and cell_len(before[-1]) == 2:
106
+ return before[:-1] + " "
107
+ if before_len == total:
108
+ return before
109
+ if before_len > total:
110
+ end = pos
111
+ else:
112
+ start = pos
113
+
114
+
115
+ # TODO: This is inefficient
116
+ # TODO: This might not work with CWJ type characters
117
+ def chop_cells(text: str, max_size: int, position: int = 0) -> List[str]:
118
+ """Break text in to equal (cell) length strings."""
119
+ _get_character_cell_size = get_character_cell_size
120
+ characters = [
121
+ (character, _get_character_cell_size(character)) for character in text
122
+ ][::-1]
123
+ total_size = position
124
+ lines: List[List[str]] = [[]]
125
+ append = lines[-1].append
126
+
127
+ pop = characters.pop
128
+ while characters:
129
+ character, size = pop()
130
+ if total_size + size > max_size:
131
+ lines.append([character])
132
+ append = lines[-1].append
133
+ total_size = size
134
+ else:
135
+ total_size += size
136
+ append(character)
137
+ return ["".join(line) for line in lines]
138
+
139
+
140
+ if __name__ == "__main__": # pragma: no cover
141
+
142
+ print(get_character_cell_size("😽"))
143
+ for line in chop_cells("""这是对亚洲语言支持的测试。面对模棱两可的想法,拒绝猜测的诱惑。""", 8):
144
+ print(line)
145
+ for n in range(80, 1, -1):
146
+ print(set_cell_size("""这是对亚洲语言支持的测试。面对模棱两可的想法,拒绝猜测的诱惑。""", n) + "|")
147
+ print("x" * n)
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/color.py ADDED
@@ -0,0 +1,581 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import platform
2
+ import re
3
+ from colorsys import rgb_to_hls
4
+ from enum import IntEnum
5
+ from functools import lru_cache
6
+ from typing import TYPE_CHECKING, NamedTuple, Optional, Tuple
7
+
8
+ from ._palettes import EIGHT_BIT_PALETTE, STANDARD_PALETTE, WINDOWS_PALETTE
9
+ from .color_triplet import ColorTriplet
10
+ from .repr import rich_repr, Result
11
+ from .terminal_theme import DEFAULT_TERMINAL_THEME
12
+
13
+ if TYPE_CHECKING: # pragma: no cover
14
+ from .terminal_theme import TerminalTheme
15
+ from .text import Text
16
+
17
+
18
+ WINDOWS = platform.system() == "Windows"
19
+
20
+
21
+ class ColorSystem(IntEnum):
22
+ """One of the 3 color system supported by terminals."""
23
+
24
+ STANDARD = 1
25
+ EIGHT_BIT = 2
26
+ TRUECOLOR = 3
27
+ WINDOWS = 4
28
+
29
+ def __repr__(self) -> str:
30
+ return f"ColorSystem.{self.name}"
31
+
32
+
33
+ class ColorType(IntEnum):
34
+ """Type of color stored in Color class."""
35
+
36
+ DEFAULT = 0
37
+ STANDARD = 1
38
+ EIGHT_BIT = 2
39
+ TRUECOLOR = 3
40
+ WINDOWS = 4
41
+
42
+ def __repr__(self) -> str:
43
+ return f"ColorType.{self.name}"
44
+
45
+
46
+ ANSI_COLOR_NAMES = {
47
+ "black": 0,
48
+ "red": 1,
49
+ "green": 2,
50
+ "yellow": 3,
51
+ "blue": 4,
52
+ "magenta": 5,
53
+ "cyan": 6,
54
+ "white": 7,
55
+ "bright_black": 8,
56
+ "bright_red": 9,
57
+ "bright_green": 10,
58
+ "bright_yellow": 11,
59
+ "bright_blue": 12,
60
+ "bright_magenta": 13,
61
+ "bright_cyan": 14,
62
+ "bright_white": 15,
63
+ "grey0": 16,
64
+ "navy_blue": 17,
65
+ "dark_blue": 18,
66
+ "blue3": 20,
67
+ "blue1": 21,
68
+ "dark_green": 22,
69
+ "deep_sky_blue4": 25,
70
+ "dodger_blue3": 26,
71
+ "dodger_blue2": 27,
72
+ "green4": 28,
73
+ "spring_green4": 29,
74
+ "turquoise4": 30,
75
+ "deep_sky_blue3": 32,
76
+ "dodger_blue1": 33,
77
+ "green3": 40,
78
+ "spring_green3": 41,
79
+ "dark_cyan": 36,
80
+ "light_sea_green": 37,
81
+ "deep_sky_blue2": 38,
82
+ "deep_sky_blue1": 39,
83
+ "spring_green2": 47,
84
+ "cyan3": 43,
85
+ "dark_turquoise": 44,
86
+ "turquoise2": 45,
87
+ "green1": 46,
88
+ "spring_green1": 48,
89
+ "medium_spring_green": 49,
90
+ "cyan2": 50,
91
+ "cyan1": 51,
92
+ "dark_red": 88,
93
+ "deep_pink4": 125,
94
+ "purple4": 55,
95
+ "purple3": 56,
96
+ "blue_violet": 57,
97
+ "orange4": 94,
98
+ "grey37": 59,
99
+ "medium_purple4": 60,
100
+ "slate_blue3": 62,
101
+ "royal_blue1": 63,
102
+ "chartreuse4": 64,
103
+ "dark_sea_green4": 71,
104
+ "pale_turquoise4": 66,
105
+ "steel_blue": 67,
106
+ "steel_blue3": 68,
107
+ "cornflower_blue": 69,
108
+ "chartreuse3": 76,
109
+ "cadet_blue": 73,
110
+ "sky_blue3": 74,
111
+ "steel_blue1": 81,
112
+ "pale_green3": 114,
113
+ "sea_green3": 78,
114
+ "aquamarine3": 79,
115
+ "medium_turquoise": 80,
116
+ "chartreuse2": 112,
117
+ "sea_green2": 83,
118
+ "sea_green1": 85,
119
+ "aquamarine1": 122,
120
+ "dark_slate_gray2": 87,
121
+ "dark_magenta": 91,
122
+ "dark_violet": 128,
123
+ "purple": 129,
124
+ "light_pink4": 95,
125
+ "plum4": 96,
126
+ "medium_purple3": 98,
127
+ "slate_blue1": 99,
128
+ "yellow4": 106,
129
+ "wheat4": 101,
130
+ "grey53": 102,
131
+ "light_slate_grey": 103,
132
+ "medium_purple": 104,
133
+ "light_slate_blue": 105,
134
+ "dark_olive_green3": 149,
135
+ "dark_sea_green": 108,
136
+ "light_sky_blue3": 110,
137
+ "sky_blue2": 111,
138
+ "dark_sea_green3": 150,
139
+ "dark_slate_gray3": 116,
140
+ "sky_blue1": 117,
141
+ "chartreuse1": 118,
142
+ "light_green": 120,
143
+ "pale_green1": 156,
144
+ "dark_slate_gray1": 123,
145
+ "red3": 160,
146
+ "medium_violet_red": 126,
147
+ "magenta3": 164,
148
+ "dark_orange3": 166,
149
+ "indian_red": 167,
150
+ "hot_pink3": 168,
151
+ "medium_orchid3": 133,
152
+ "medium_orchid": 134,
153
+ "medium_purple2": 140,
154
+ "dark_goldenrod": 136,
155
+ "light_salmon3": 173,
156
+ "rosy_brown": 138,
157
+ "grey63": 139,
158
+ "medium_purple1": 141,
159
+ "gold3": 178,
160
+ "dark_khaki": 143,
161
+ "navajo_white3": 144,
162
+ "grey69": 145,
163
+ "light_steel_blue3": 146,
164
+ "light_steel_blue": 147,
165
+ "yellow3": 184,
166
+ "dark_sea_green2": 157,
167
+ "light_cyan3": 152,
168
+ "light_sky_blue1": 153,
169
+ "green_yellow": 154,
170
+ "dark_olive_green2": 155,
171
+ "dark_sea_green1": 193,
172
+ "pale_turquoise1": 159,
173
+ "deep_pink3": 162,
174
+ "magenta2": 200,
175
+ "hot_pink2": 169,
176
+ "orchid": 170,
177
+ "medium_orchid1": 207,
178
+ "orange3": 172,
179
+ "light_pink3": 174,
180
+ "pink3": 175,
181
+ "plum3": 176,
182
+ "violet": 177,
183
+ "light_goldenrod3": 179,
184
+ "tan": 180,
185
+ "misty_rose3": 181,
186
+ "thistle3": 182,
187
+ "plum2": 183,
188
+ "khaki3": 185,
189
+ "light_goldenrod2": 222,
190
+ "light_yellow3": 187,
191
+ "grey84": 188,
192
+ "light_steel_blue1": 189,
193
+ "yellow2": 190,
194
+ "dark_olive_green1": 192,
195
+ "honeydew2": 194,
196
+ "light_cyan1": 195,
197
+ "red1": 196,
198
+ "deep_pink2": 197,
199
+ "deep_pink1": 199,
200
+ "magenta1": 201,
201
+ "orange_red1": 202,
202
+ "indian_red1": 204,
203
+ "hot_pink": 206,
204
+ "dark_orange": 208,
205
+ "salmon1": 209,
206
+ "light_coral": 210,
207
+ "pale_violet_red1": 211,
208
+ "orchid2": 212,
209
+ "orchid1": 213,
210
+ "orange1": 214,
211
+ "sandy_brown": 215,
212
+ "light_salmon1": 216,
213
+ "light_pink1": 217,
214
+ "pink1": 218,
215
+ "plum1": 219,
216
+ "gold1": 220,
217
+ "navajo_white1": 223,
218
+ "misty_rose1": 224,
219
+ "thistle1": 225,
220
+ "yellow1": 226,
221
+ "light_goldenrod1": 227,
222
+ "khaki1": 228,
223
+ "wheat1": 229,
224
+ "cornsilk1": 230,
225
+ "grey100": 231,
226
+ "grey3": 232,
227
+ "grey7": 233,
228
+ "grey11": 234,
229
+ "grey15": 235,
230
+ "grey19": 236,
231
+ "grey23": 237,
232
+ "grey27": 238,
233
+ "grey30": 239,
234
+ "grey35": 240,
235
+ "grey39": 241,
236
+ "grey42": 242,
237
+ "grey46": 243,
238
+ "grey50": 244,
239
+ "grey54": 245,
240
+ "grey58": 246,
241
+ "grey62": 247,
242
+ "grey66": 248,
243
+ "grey70": 249,
244
+ "grey74": 250,
245
+ "grey78": 251,
246
+ "grey82": 252,
247
+ "grey85": 253,
248
+ "grey89": 254,
249
+ "grey93": 255,
250
+ }
251
+
252
+
253
+ class ColorParseError(Exception):
254
+ """The color could not be parsed."""
255
+
256
+
257
+ RE_COLOR = re.compile(
258
+ r"""^
259
+ \#([0-9a-f]{6})$|
260
+ color\(([0-9]{1,3})\)$|
261
+ rgb\(([\d\s,]+)\)$
262
+ """,
263
+ re.VERBOSE,
264
+ )
265
+
266
+
267
+ @rich_repr
268
+ class Color(NamedTuple):
269
+ """Terminal color definition."""
270
+
271
+ name: str
272
+ """The name of the color (typically the input to Color.parse)."""
273
+ type: ColorType
274
+ """The type of the color."""
275
+ number: Optional[int] = None
276
+ """The color number, if a standard color, or None."""
277
+ triplet: Optional[ColorTriplet] = None
278
+ """A triplet of color components, if an RGB color."""
279
+
280
+ def __rich__(self) -> "Text":
281
+ """Dispays the actual color if Rich printed."""
282
+ from .text import Text
283
+ from .style import Style
284
+
285
+ return Text.assemble(
286
+ f"<color {self.name!r} ({self.type.name.lower()})",
287
+ ("⬤", Style(color=self)),
288
+ " >",
289
+ )
290
+
291
+ def __rich_repr__(self) -> Result:
292
+ yield self.name
293
+ yield self.type
294
+ yield "number", self.number, None
295
+ yield "triplet", self.triplet, None
296
+
297
+ @property
298
+ def system(self) -> ColorSystem:
299
+ """Get the native color system for this color."""
300
+ if self.type == ColorType.DEFAULT:
301
+ return ColorSystem.STANDARD
302
+ return ColorSystem(int(self.type))
303
+
304
+ @property
305
+ def is_system_defined(self) -> bool:
306
+ """Check if the color is ultimately defined by the system."""
307
+ return self.system not in (ColorSystem.EIGHT_BIT, ColorSystem.TRUECOLOR)
308
+
309
+ @property
310
+ def is_default(self) -> bool:
311
+ """Check if the color is a default color."""
312
+ return self.type == ColorType.DEFAULT
313
+
314
+ def get_truecolor(
315
+ self, theme: Optional["TerminalTheme"] = None, foreground: bool = True
316
+ ) -> ColorTriplet:
317
+ """Get an equivalent color triplet for this color.
318
+
319
+ Args:
320
+ theme (TerminalTheme, optional): Optional terminal theme, or None to use default. Defaults to None.
321
+ foreground (bool, optional): True for a foreground color, or False for background. Defaults to True.
322
+
323
+ Returns:
324
+ ColorTriplet: A color triplet containing RGB components.
325
+ """
326
+
327
+ if theme is None:
328
+ theme = DEFAULT_TERMINAL_THEME
329
+ if self.type == ColorType.TRUECOLOR:
330
+ assert self.triplet is not None
331
+ return self.triplet
332
+ elif self.type == ColorType.EIGHT_BIT:
333
+ assert self.number is not None
334
+ return EIGHT_BIT_PALETTE[self.number]
335
+ elif self.type == ColorType.STANDARD:
336
+ assert self.number is not None
337
+ return theme.ansi_colors[self.number]
338
+ elif self.type == ColorType.WINDOWS:
339
+ assert self.number is not None
340
+ return WINDOWS_PALETTE[self.number]
341
+ else: # self.type == ColorType.DEFAULT:
342
+ assert self.number is None
343
+ return theme.foreground_color if foreground else theme.background_color
344
+
345
+ @classmethod
346
+ def from_ansi(cls, number: int) -> "Color":
347
+ """Create a Color number from it's 8-bit ansi number.
348
+
349
+ Args:
350
+ number (int): A number between 0-255 inclusive.
351
+
352
+ Returns:
353
+ Color: A new Color instance.
354
+ """
355
+ return cls(
356
+ name=f"color({number})",
357
+ type=(ColorType.STANDARD if number < 16 else ColorType.EIGHT_BIT),
358
+ number=number,
359
+ )
360
+
361
+ @classmethod
362
+ def from_triplet(cls, triplet: "ColorTriplet") -> "Color":
363
+ """Create a truecolor RGB color from a triplet of values.
364
+
365
+ Args:
366
+ triplet (ColorTriplet): A color triplet containing red, green and blue components.
367
+
368
+ Returns:
369
+ Color: A new color object.
370
+ """
371
+ return cls(name=triplet.hex, type=ColorType.TRUECOLOR, triplet=triplet)
372
+
373
+ @classmethod
374
+ def from_rgb(cls, red: float, green: float, blue: float) -> "Color":
375
+ """Create a truecolor from three color components in the range(0->255).
376
+
377
+ Args:
378
+ red (float): Red component in range 0-255.
379
+ green (float): Green component in range 0-255.
380
+ blue (float): Blue component in range 0-255.
381
+
382
+ Returns:
383
+ Color: A new color object.
384
+ """
385
+ return cls.from_triplet(ColorTriplet(int(red), int(green), int(blue)))
386
+
387
+ @classmethod
388
+ def default(cls) -> "Color":
389
+ """Get a Color instance representing the default color.
390
+
391
+ Returns:
392
+ Color: Default color.
393
+ """
394
+ return cls(name="default", type=ColorType.DEFAULT)
395
+
396
+ @classmethod
397
+ @lru_cache(maxsize=1024)
398
+ def parse(cls, color: str) -> "Color":
399
+ """Parse a color definition."""
400
+ original_color = color
401
+ color = color.lower().strip()
402
+
403
+ if color == "default":
404
+ return cls(color, type=ColorType.DEFAULT)
405
+
406
+ color_number = ANSI_COLOR_NAMES.get(color)
407
+ if color_number is not None:
408
+ return cls(
409
+ color,
410
+ type=(ColorType.STANDARD if color_number < 16 else ColorType.EIGHT_BIT),
411
+ number=color_number,
412
+ )
413
+
414
+ color_match = RE_COLOR.match(color)
415
+ if color_match is None:
416
+ raise ColorParseError(f"{original_color!r} is not a valid color")
417
+
418
+ color_24, color_8, color_rgb = color_match.groups()
419
+ if color_24:
420
+ triplet = ColorTriplet(
421
+ int(color_24[0:2], 16), int(color_24[2:4], 16), int(color_24[4:6], 16)
422
+ )
423
+ return cls(color, ColorType.TRUECOLOR, triplet=triplet)
424
+
425
+ elif color_8:
426
+ number = int(color_8)
427
+ if number > 255:
428
+ raise ColorParseError(f"color number must be <= 255 in {color!r}")
429
+ return cls(
430
+ color,
431
+ type=(ColorType.STANDARD if number < 16 else ColorType.EIGHT_BIT),
432
+ number=number,
433
+ )
434
+
435
+ else: # color_rgb:
436
+ components = color_rgb.split(",")
437
+ if len(components) != 3:
438
+ raise ColorParseError(
439
+ f"expected three components in {original_color!r}"
440
+ )
441
+ red, green, blue = components
442
+ triplet = ColorTriplet(int(red), int(green), int(blue))
443
+ if not all(component <= 255 for component in triplet):
444
+ raise ColorParseError(
445
+ f"color components must be <= 255 in {original_color!r}"
446
+ )
447
+ return cls(color, ColorType.TRUECOLOR, triplet=triplet)
448
+
449
+ @lru_cache(maxsize=1024)
450
+ def get_ansi_codes(self, foreground: bool = True) -> Tuple[str, ...]:
451
+ """Get the ANSI escape codes for this color."""
452
+ _type = self.type
453
+ if _type == ColorType.DEFAULT:
454
+ return ("39" if foreground else "49",)
455
+
456
+ elif _type == ColorType.WINDOWS:
457
+ number = self.number
458
+ assert number is not None
459
+ fore, back = (30, 40) if number < 8 else (82, 92)
460
+ return (str(fore + number if foreground else back + number),)
461
+
462
+ elif _type == ColorType.STANDARD:
463
+ number = self.number
464
+ assert number is not None
465
+ fore, back = (30, 40) if number < 8 else (82, 92)
466
+ return (str(fore + number if foreground else back + number),)
467
+
468
+ elif _type == ColorType.EIGHT_BIT:
469
+ assert self.number is not None
470
+ return ("38" if foreground else "48", "5", str(self.number))
471
+
472
+ else: # self.standard == ColorStandard.TRUECOLOR:
473
+ assert self.triplet is not None
474
+ red, green, blue = self.triplet
475
+ return ("38" if foreground else "48", "2", str(red), str(green), str(blue))
476
+
477
+ @lru_cache(maxsize=1024)
478
+ def downgrade(self, system: ColorSystem) -> "Color":
479
+ """Downgrade a color system to a system with fewer colors."""
480
+
481
+ if self.type in [ColorType.DEFAULT, system]:
482
+ return self
483
+ # Convert to 8-bit color from truecolor color
484
+ if system == ColorSystem.EIGHT_BIT and self.system == ColorSystem.TRUECOLOR:
485
+ assert self.triplet is not None
486
+ red, green, blue = self.triplet.normalized
487
+ _h, l, s = rgb_to_hls(red, green, blue)
488
+ # If saturation is under 10% assume it is grayscale
489
+ if s < 0.1:
490
+ gray = round(l * 25.0)
491
+ if gray == 0:
492
+ color_number = 16
493
+ elif gray == 25:
494
+ color_number = 231
495
+ else:
496
+ color_number = 231 + gray
497
+ return Color(self.name, ColorType.EIGHT_BIT, number=color_number)
498
+
499
+ color_number = (
500
+ 16 + 36 * round(red * 5.0) + 6 * round(green * 5.0) + round(blue * 5.0)
501
+ )
502
+ return Color(self.name, ColorType.EIGHT_BIT, number=color_number)
503
+
504
+ # Convert to standard from truecolor or 8-bit
505
+ elif system == ColorSystem.STANDARD:
506
+ if self.system == ColorSystem.TRUECOLOR:
507
+ assert self.triplet is not None
508
+ triplet = self.triplet
509
+ else: # self.system == ColorSystem.EIGHT_BIT
510
+ assert self.number is not None
511
+ triplet = ColorTriplet(*EIGHT_BIT_PALETTE[self.number])
512
+
513
+ color_number = STANDARD_PALETTE.match(triplet)
514
+ return Color(self.name, ColorType.STANDARD, number=color_number)
515
+
516
+ elif system == ColorSystem.WINDOWS:
517
+ if self.system == ColorSystem.TRUECOLOR:
518
+ assert self.triplet is not None
519
+ triplet = self.triplet
520
+ else: # self.system == ColorSystem.EIGHT_BIT
521
+ assert self.number is not None
522
+ if self.number < 16:
523
+ return Color(self.name, ColorType.WINDOWS, number=self.number)
524
+ triplet = ColorTriplet(*EIGHT_BIT_PALETTE[self.number])
525
+
526
+ color_number = WINDOWS_PALETTE.match(triplet)
527
+ return Color(self.name, ColorType.WINDOWS, number=color_number)
528
+
529
+ return self
530
+
531
+
532
+ def parse_rgb_hex(hex_color: str) -> ColorTriplet:
533
+ """Parse six hex characters in to RGB triplet."""
534
+ assert len(hex_color) == 6, "must be 6 characters"
535
+ color = ColorTriplet(
536
+ int(hex_color[0:2], 16), int(hex_color[2:4], 16), int(hex_color[4:6], 16)
537
+ )
538
+ return color
539
+
540
+
541
+ def blend_rgb(
542
+ color1: ColorTriplet, color2: ColorTriplet, cross_fade: float = 0.5
543
+ ) -> ColorTriplet:
544
+ """Blend one RGB color in to another."""
545
+ r1, g1, b1 = color1
546
+ r2, g2, b2 = color2
547
+ new_color = ColorTriplet(
548
+ int(r1 + (r2 - r1) * cross_fade),
549
+ int(g1 + (g2 - g1) * cross_fade),
550
+ int(b1 + (b2 - b1) * cross_fade),
551
+ )
552
+ return new_color
553
+
554
+
555
+ if __name__ == "__main__": # pragma: no cover
556
+
557
+ from .console import Console
558
+ from .table import Table
559
+ from .text import Text
560
+
561
+ console = Console()
562
+
563
+ table = Table(show_footer=False, show_edge=True)
564
+ table.add_column("Color", width=10, overflow="ellipsis")
565
+ table.add_column("Number", justify="right", style="yellow")
566
+ table.add_column("Name", style="green")
567
+ table.add_column("Hex", style="blue")
568
+ table.add_column("RGB", style="magenta")
569
+
570
+ colors = sorted((v, k) for k, v in ANSI_COLOR_NAMES.items())
571
+ for color_number, name in colors:
572
+ color_cell = Text(" " * 10, style=f"on {name}")
573
+ if color_number < 16:
574
+ table.add_row(color_cell, f"{color_number}", Text(f'"{name}"'))
575
+ else:
576
+ color = EIGHT_BIT_PALETTE[color_number] # type: ignore
577
+ table.add_row(
578
+ color_cell, str(color_number), Text(f'"{name}"'), color.hex, color.rgb
579
+ )
580
+
581
+ console.print(table)
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/color_triplet.py ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import NamedTuple, Tuple
2
+
3
+
4
+ class ColorTriplet(NamedTuple):
5
+ """The red, green, and blue components of a color."""
6
+
7
+ red: int
8
+ """Red component in 0 to 255 range."""
9
+ green: int
10
+ """Green component in 0 to 255 range."""
11
+ blue: int
12
+ """Blue component in 0 to 255 range."""
13
+
14
+ @property
15
+ def hex(self) -> str:
16
+ """get the color triplet in CSS style."""
17
+ red, green, blue = self
18
+ return f"#{red:02x}{green:02x}{blue:02x}"
19
+
20
+ @property
21
+ def rgb(self) -> str:
22
+ """The color in RGB format.
23
+
24
+ Returns:
25
+ str: An rgb color, e.g. ``"rgb(100,23,255)"``.
26
+ """
27
+ red, green, blue = self
28
+ return f"rgb({red},{green},{blue})"
29
+
30
+ @property
31
+ def normalized(self) -> Tuple[float, float, float]:
32
+ """Convert components into floats between 0 and 1.
33
+
34
+ Returns:
35
+ Tuple[float, float, float]: A tuple of three normalized colour components.
36
+ """
37
+ red, green, blue = self
38
+ return red / 255.0, green / 255.0, blue / 255.0
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/columns.py ADDED
@@ -0,0 +1,187 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from collections import defaultdict
2
+ from itertools import chain
3
+ from operator import itemgetter
4
+ from typing import Dict, Iterable, List, Optional, Tuple
5
+
6
+ from .align import Align, AlignMethod
7
+ from .console import Console, ConsoleOptions, RenderableType, RenderResult
8
+ from .constrain import Constrain
9
+ from .measure import Measurement
10
+ from .padding import Padding, PaddingDimensions
11
+ from .table import Table
12
+ from .text import TextType
13
+ from .jupyter import JupyterMixin
14
+
15
+
16
+ class Columns(JupyterMixin):
17
+ """Display renderables in neat columns.
18
+
19
+ Args:
20
+ renderables (Iterable[RenderableType]): Any number of Rich renderables (including str).
21
+ width (int, optional): The desired width of the columns, or None to auto detect. Defaults to None.
22
+ padding (PaddingDimensions, optional): Optional padding around cells. Defaults to (0, 1).
23
+ expand (bool, optional): Expand columns to full width. Defaults to False.
24
+ equal (bool, optional): Arrange in to equal sized columns. Defaults to False.
25
+ column_first (bool, optional): Align items from top to bottom (rather than left to right). Defaults to False.
26
+ right_to_left (bool, optional): Start column from right hand side. Defaults to False.
27
+ align (str, optional): Align value ("left", "right", or "center") or None for default. Defaults to None.
28
+ title (TextType, optional): Optional title for Columns.
29
+ """
30
+
31
+ def __init__(
32
+ self,
33
+ renderables: Optional[Iterable[RenderableType]] = None,
34
+ padding: PaddingDimensions = (0, 1),
35
+ *,
36
+ width: Optional[int] = None,
37
+ expand: bool = False,
38
+ equal: bool = False,
39
+ column_first: bool = False,
40
+ right_to_left: bool = False,
41
+ align: Optional[AlignMethod] = None,
42
+ title: Optional[TextType] = None,
43
+ ) -> None:
44
+ self.renderables = list(renderables or [])
45
+ self.width = width
46
+ self.padding = padding
47
+ self.expand = expand
48
+ self.equal = equal
49
+ self.column_first = column_first
50
+ self.right_to_left = right_to_left
51
+ self.align: Optional[AlignMethod] = align
52
+ self.title = title
53
+
54
+ def add_renderable(self, renderable: RenderableType) -> None:
55
+ """Add a renderable to the columns.
56
+
57
+ Args:
58
+ renderable (RenderableType): Any renderable object.
59
+ """
60
+ self.renderables.append(renderable)
61
+
62
+ def __rich_console__(
63
+ self, console: Console, options: ConsoleOptions
64
+ ) -> RenderResult:
65
+ render_str = console.render_str
66
+ renderables = [
67
+ render_str(renderable) if isinstance(renderable, str) else renderable
68
+ for renderable in self.renderables
69
+ ]
70
+ if not renderables:
71
+ return
72
+ _top, right, _bottom, left = Padding.unpack(self.padding)
73
+ width_padding = max(left, right)
74
+ max_width = options.max_width
75
+ widths: Dict[int, int] = defaultdict(int)
76
+ column_count = len(renderables)
77
+
78
+ get_measurement = Measurement.get
79
+ renderable_widths = [
80
+ get_measurement(console, options, renderable).maximum
81
+ for renderable in renderables
82
+ ]
83
+ if self.equal:
84
+ renderable_widths = [max(renderable_widths)] * len(renderable_widths)
85
+
86
+ def iter_renderables(
87
+ column_count: int,
88
+ ) -> Iterable[Tuple[int, Optional[RenderableType]]]:
89
+ item_count = len(renderables)
90
+ if self.column_first:
91
+ width_renderables = list(zip(renderable_widths, renderables))
92
+
93
+ column_lengths: List[int] = [item_count // column_count] * column_count
94
+ for col_no in range(item_count % column_count):
95
+ column_lengths[col_no] += 1
96
+
97
+ row_count = (item_count + column_count - 1) // column_count
98
+ cells = [[-1] * column_count for _ in range(row_count)]
99
+ row = col = 0
100
+ for index in range(item_count):
101
+ cells[row][col] = index
102
+ column_lengths[col] -= 1
103
+ if column_lengths[col]:
104
+ row += 1
105
+ else:
106
+ col += 1
107
+ row = 0
108
+ for index in chain.from_iterable(cells):
109
+ if index == -1:
110
+ break
111
+ yield width_renderables[index]
112
+ else:
113
+ yield from zip(renderable_widths, renderables)
114
+ # Pad odd elements with spaces
115
+ if item_count % column_count:
116
+ for _ in range(column_count - (item_count % column_count)):
117
+ yield 0, None
118
+
119
+ table = Table.grid(padding=self.padding, collapse_padding=True, pad_edge=False)
120
+ table.expand = self.expand
121
+ table.title = self.title
122
+
123
+ if self.width is not None:
124
+ column_count = (max_width) // (self.width + width_padding)
125
+ for _ in range(column_count):
126
+ table.add_column(width=self.width)
127
+ else:
128
+ while column_count > 1:
129
+ widths.clear()
130
+ column_no = 0
131
+ for renderable_width, _ in iter_renderables(column_count):
132
+ widths[column_no] = max(widths[column_no], renderable_width)
133
+ total_width = sum(widths.values()) + width_padding * (
134
+ len(widths) - 1
135
+ )
136
+ if total_width > max_width:
137
+ column_count = len(widths) - 1
138
+ break
139
+ else:
140
+ column_no = (column_no + 1) % column_count
141
+ else:
142
+ break
143
+
144
+ get_renderable = itemgetter(1)
145
+ _renderables = [
146
+ get_renderable(_renderable)
147
+ for _renderable in iter_renderables(column_count)
148
+ ]
149
+ if self.equal:
150
+ _renderables = [
151
+ None
152
+ if renderable is None
153
+ else Constrain(renderable, renderable_widths[0])
154
+ for renderable in _renderables
155
+ ]
156
+ if self.align:
157
+ align = self.align
158
+ _Align = Align
159
+ _renderables = [
160
+ None if renderable is None else _Align(renderable, align)
161
+ for renderable in _renderables
162
+ ]
163
+
164
+ right_to_left = self.right_to_left
165
+ add_row = table.add_row
166
+ for start in range(0, len(_renderables), column_count):
167
+ row = _renderables[start : start + column_count]
168
+ if right_to_left:
169
+ row = row[::-1]
170
+ add_row(*row)
171
+ yield table
172
+
173
+
174
+ if __name__ == "__main__": # pragma: no cover
175
+ import os
176
+
177
+ console = Console()
178
+
179
+ files = [f"{i} {s}" for i, s in enumerate(sorted(os.listdir()))]
180
+ columns = Columns(files, padding=(0, 1), expand=False, equal=False)
181
+ console.print(columns)
182
+ console.rule()
183
+ columns.column_first = True
184
+ console.print(columns)
185
+ columns.right_to_left = True
186
+ console.rule()
187
+ console.print(columns)
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/console.py ADDED
@@ -0,0 +1,2211 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import inspect
2
+ import os
3
+ import platform
4
+ import sys
5
+ import threading
6
+ from abc import ABC, abstractmethod
7
+ from dataclasses import dataclass, field
8
+ from datetime import datetime
9
+ from functools import wraps
10
+ from getpass import getpass
11
+ from html import escape
12
+ from inspect import isclass
13
+ from itertools import islice
14
+ from threading import RLock
15
+ from time import monotonic
16
+ from types import FrameType, ModuleType, TracebackType
17
+ from typing import (
18
+ IO,
19
+ TYPE_CHECKING,
20
+ Any,
21
+ Callable,
22
+ Dict,
23
+ Iterable,
24
+ List,
25
+ Mapping,
26
+ NamedTuple,
27
+ Optional,
28
+ TextIO,
29
+ Tuple,
30
+ Type,
31
+ Union,
32
+ cast,
33
+ )
34
+
35
+ if sys.version_info >= (3, 8):
36
+ from typing import Literal, Protocol, runtime_checkable
37
+ else:
38
+ from pip._vendor.typing_extensions import (
39
+ Literal,
40
+ Protocol,
41
+ runtime_checkable,
42
+ ) # pragma: no cover
43
+
44
+ from . import errors, themes
45
+ from ._emoji_replace import _emoji_replace
46
+ from ._log_render import FormatTimeCallable, LogRender
47
+ from .align import Align, AlignMethod
48
+ from .color import ColorSystem
49
+ from .control import Control
50
+ from .emoji import EmojiVariant
51
+ from .highlighter import NullHighlighter, ReprHighlighter
52
+ from .markup import render as render_markup
53
+ from .measure import Measurement, measure_renderables
54
+ from .pager import Pager, SystemPager
55
+ from .pretty import Pretty, is_expandable
56
+ from .protocol import rich_cast
57
+ from .region import Region
58
+ from .scope import render_scope
59
+ from .screen import Screen
60
+ from .segment import Segment
61
+ from .style import Style, StyleType
62
+ from .styled import Styled
63
+ from .terminal_theme import DEFAULT_TERMINAL_THEME, TerminalTheme
64
+ from .text import Text, TextType
65
+ from .theme import Theme, ThemeStack
66
+
67
+ if TYPE_CHECKING:
68
+ from ._windows import WindowsConsoleFeatures
69
+ from .live import Live
70
+ from .status import Status
71
+
72
+ WINDOWS = platform.system() == "Windows"
73
+
74
+ HighlighterType = Callable[[Union[str, "Text"]], "Text"]
75
+ JustifyMethod = Literal["default", "left", "center", "right", "full"]
76
+ OverflowMethod = Literal["fold", "crop", "ellipsis", "ignore"]
77
+
78
+
79
+ class NoChange:
80
+ pass
81
+
82
+
83
+ NO_CHANGE = NoChange()
84
+
85
+
86
+ CONSOLE_HTML_FORMAT = """\
87
+ <!DOCTYPE html>
88
+ <head>
89
+ <meta charset="UTF-8">
90
+ <style>
91
+ {stylesheet}
92
+ body {{
93
+ color: {foreground};
94
+ background-color: {background};
95
+ }}
96
+ </style>
97
+ </head>
98
+ <html>
99
+ <body>
100
+ <code>
101
+ <pre style="font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">{code}</pre>
102
+ </code>
103
+ </body>
104
+ </html>
105
+ """
106
+
107
+ _TERM_COLORS = {"256color": ColorSystem.EIGHT_BIT, "16color": ColorSystem.STANDARD}
108
+
109
+
110
+ class ConsoleDimensions(NamedTuple):
111
+ """Size of the terminal."""
112
+
113
+ width: int
114
+ """The width of the console in 'cells'."""
115
+ height: int
116
+ """The height of the console in lines."""
117
+
118
+
119
+ @dataclass
120
+ class ConsoleOptions:
121
+ """Options for __rich_console__ method."""
122
+
123
+ size: ConsoleDimensions
124
+ """Size of console."""
125
+ legacy_windows: bool
126
+ """legacy_windows: flag for legacy windows."""
127
+ min_width: int
128
+ """Minimum width of renderable."""
129
+ max_width: int
130
+ """Maximum width of renderable."""
131
+ is_terminal: bool
132
+ """True if the target is a terminal, otherwise False."""
133
+ encoding: str
134
+ """Encoding of terminal."""
135
+ max_height: int
136
+ """Height of container (starts as terminal)"""
137
+ justify: Optional[JustifyMethod] = None
138
+ """Justify value override for renderable."""
139
+ overflow: Optional[OverflowMethod] = None
140
+ """Overflow value override for renderable."""
141
+ no_wrap: Optional[bool] = False
142
+ """Disable wrapping for text."""
143
+ highlight: Optional[bool] = None
144
+ """Highlight override for render_str."""
145
+ markup: Optional[bool] = None
146
+ """Enable markup when rendering strings."""
147
+ height: Optional[int] = None
148
+
149
+ @property
150
+ def ascii_only(self) -> bool:
151
+ """Check if renderables should use ascii only."""
152
+ return not self.encoding.startswith("utf")
153
+
154
+ def copy(self) -> "ConsoleOptions":
155
+ """Return a copy of the options.
156
+
157
+ Returns:
158
+ ConsoleOptions: a copy of self.
159
+ """
160
+ options: ConsoleOptions = ConsoleOptions.__new__(ConsoleOptions)
161
+ options.__dict__ = self.__dict__.copy()
162
+ return options
163
+
164
+ def update(
165
+ self,
166
+ *,
167
+ width: Union[int, NoChange] = NO_CHANGE,
168
+ min_width: Union[int, NoChange] = NO_CHANGE,
169
+ max_width: Union[int, NoChange] = NO_CHANGE,
170
+ justify: Union[Optional[JustifyMethod], NoChange] = NO_CHANGE,
171
+ overflow: Union[Optional[OverflowMethod], NoChange] = NO_CHANGE,
172
+ no_wrap: Union[Optional[bool], NoChange] = NO_CHANGE,
173
+ highlight: Union[Optional[bool], NoChange] = NO_CHANGE,
174
+ markup: Union[Optional[bool], NoChange] = NO_CHANGE,
175
+ height: Union[Optional[int], NoChange] = NO_CHANGE,
176
+ ) -> "ConsoleOptions":
177
+ """Update values, return a copy."""
178
+ options = self.copy()
179
+ if not isinstance(width, NoChange):
180
+ options.min_width = options.max_width = max(0, width)
181
+ if not isinstance(min_width, NoChange):
182
+ options.min_width = min_width
183
+ if not isinstance(max_width, NoChange):
184
+ options.max_width = max_width
185
+ if not isinstance(justify, NoChange):
186
+ options.justify = justify
187
+ if not isinstance(overflow, NoChange):
188
+ options.overflow = overflow
189
+ if not isinstance(no_wrap, NoChange):
190
+ options.no_wrap = no_wrap
191
+ if not isinstance(highlight, NoChange):
192
+ options.highlight = highlight
193
+ if not isinstance(markup, NoChange):
194
+ options.markup = markup
195
+ if not isinstance(height, NoChange):
196
+ if height is not None:
197
+ options.max_height = height
198
+ options.height = None if height is None else max(0, height)
199
+ return options
200
+
201
+ def update_width(self, width: int) -> "ConsoleOptions":
202
+ """Update just the width, return a copy.
203
+
204
+ Args:
205
+ width (int): New width (sets both min_width and max_width)
206
+
207
+ Returns:
208
+ ~ConsoleOptions: New console options instance.
209
+ """
210
+ options = self.copy()
211
+ options.min_width = options.max_width = max(0, width)
212
+ return options
213
+
214
+ def update_height(self, height: int) -> "ConsoleOptions":
215
+ """Update the height, and return a copy.
216
+
217
+ Args:
218
+ height (int): New height
219
+
220
+ Returns:
221
+ ~ConsoleOptions: New Console options instance.
222
+ """
223
+ options = self.copy()
224
+ options.max_height = options.height = height
225
+ return options
226
+
227
+ def update_dimensions(self, width: int, height: int) -> "ConsoleOptions":
228
+ """Update the width and height, and return a copy.
229
+
230
+ Args:
231
+ width (int): New width (sets both min_width and max_width).
232
+ height (int): New height.
233
+
234
+ Returns:
235
+ ~ConsoleOptions: New console options instance.
236
+ """
237
+ options = self.copy()
238
+ options.min_width = options.max_width = max(0, width)
239
+ options.height = options.max_height = height
240
+ return options
241
+
242
+
243
+ @runtime_checkable
244
+ class RichCast(Protocol):
245
+ """An object that may be 'cast' to a console renderable."""
246
+
247
+ def __rich__(self) -> Union["ConsoleRenderable", str]: # pragma: no cover
248
+ ...
249
+
250
+
251
+ @runtime_checkable
252
+ class ConsoleRenderable(Protocol):
253
+ """An object that supports the console protocol."""
254
+
255
+ def __rich_console__(
256
+ self, console: "Console", options: "ConsoleOptions"
257
+ ) -> "RenderResult": # pragma: no cover
258
+ ...
259
+
260
+
261
+ # A type that may be rendered by Console.
262
+ RenderableType = Union[ConsoleRenderable, RichCast, str]
263
+
264
+
265
+ # The result of calling a __rich_console__ method.
266
+ RenderResult = Iterable[Union[RenderableType, Segment]]
267
+
268
+
269
+ _null_highlighter = NullHighlighter()
270
+
271
+
272
+ class CaptureError(Exception):
273
+ """An error in the Capture context manager."""
274
+
275
+
276
+ class NewLine:
277
+ """A renderable to generate new line(s)"""
278
+
279
+ def __init__(self, count: int = 1) -> None:
280
+ self.count = count
281
+
282
+ def __rich_console__(
283
+ self, console: "Console", options: "ConsoleOptions"
284
+ ) -> Iterable[Segment]:
285
+ yield Segment("\n" * self.count)
286
+
287
+
288
+ class ScreenUpdate:
289
+ """Render a list of lines at a given offset."""
290
+
291
+ def __init__(self, lines: List[List[Segment]], x: int, y: int) -> None:
292
+ self._lines = lines
293
+ self.x = x
294
+ self.y = y
295
+
296
+ def __rich_console__(
297
+ self, console: "Console", options: ConsoleOptions
298
+ ) -> RenderResult:
299
+ x = self.x
300
+ move_to = Control.move_to
301
+ for offset, line in enumerate(self._lines, self.y):
302
+ yield move_to(x, offset)
303
+ yield from line
304
+
305
+
306
+ class Capture:
307
+ """Context manager to capture the result of printing to the console.
308
+ See :meth:`~rich.console.Console.capture` for how to use.
309
+
310
+ Args:
311
+ console (Console): A console instance to capture output.
312
+ """
313
+
314
+ def __init__(self, console: "Console") -> None:
315
+ self._console = console
316
+ self._result: Optional[str] = None
317
+
318
+ def __enter__(self) -> "Capture":
319
+ self._console.begin_capture()
320
+ return self
321
+
322
+ def __exit__(
323
+ self,
324
+ exc_type: Optional[Type[BaseException]],
325
+ exc_val: Optional[BaseException],
326
+ exc_tb: Optional[TracebackType],
327
+ ) -> None:
328
+ self._result = self._console.end_capture()
329
+
330
+ def get(self) -> str:
331
+ """Get the result of the capture."""
332
+ if self._result is None:
333
+ raise CaptureError(
334
+ "Capture result is not available until context manager exits."
335
+ )
336
+ return self._result
337
+
338
+
339
+ class ThemeContext:
340
+ """A context manager to use a temporary theme. See :meth:`~rich.console.Console.use_theme` for usage."""
341
+
342
+ def __init__(self, console: "Console", theme: Theme, inherit: bool = True) -> None:
343
+ self.console = console
344
+ self.theme = theme
345
+ self.inherit = inherit
346
+
347
+ def __enter__(self) -> "ThemeContext":
348
+ self.console.push_theme(self.theme)
349
+ return self
350
+
351
+ def __exit__(
352
+ self,
353
+ exc_type: Optional[Type[BaseException]],
354
+ exc_val: Optional[BaseException],
355
+ exc_tb: Optional[TracebackType],
356
+ ) -> None:
357
+ self.console.pop_theme()
358
+
359
+
360
+ class PagerContext:
361
+ """A context manager that 'pages' content. See :meth:`~rich.console.Console.pager` for usage."""
362
+
363
+ def __init__(
364
+ self,
365
+ console: "Console",
366
+ pager: Optional[Pager] = None,
367
+ styles: bool = False,
368
+ links: bool = False,
369
+ ) -> None:
370
+ self._console = console
371
+ self.pager = SystemPager() if pager is None else pager
372
+ self.styles = styles
373
+ self.links = links
374
+
375
+ def __enter__(self) -> "PagerContext":
376
+ self._console._enter_buffer()
377
+ return self
378
+
379
+ def __exit__(
380
+ self,
381
+ exc_type: Optional[Type[BaseException]],
382
+ exc_val: Optional[BaseException],
383
+ exc_tb: Optional[TracebackType],
384
+ ) -> None:
385
+ if exc_type is None:
386
+ with self._console._lock:
387
+ buffer: List[Segment] = self._console._buffer[:]
388
+ del self._console._buffer[:]
389
+ segments: Iterable[Segment] = buffer
390
+ if not self.styles:
391
+ segments = Segment.strip_styles(segments)
392
+ elif not self.links:
393
+ segments = Segment.strip_links(segments)
394
+ content = self._console._render_buffer(segments)
395
+ self.pager.show(content)
396
+ self._console._exit_buffer()
397
+
398
+
399
+ class ScreenContext:
400
+ """A context manager that enables an alternative screen. See :meth:`~rich.console.Console.screen` for usage."""
401
+
402
+ def __init__(
403
+ self, console: "Console", hide_cursor: bool, style: StyleType = ""
404
+ ) -> None:
405
+ self.console = console
406
+ self.hide_cursor = hide_cursor
407
+ self.screen = Screen(style=style)
408
+ self._changed = False
409
+
410
+ def update(
411
+ self, *renderables: RenderableType, style: Optional[StyleType] = None
412
+ ) -> None:
413
+ """Update the screen.
414
+
415
+ Args:
416
+ renderable (RenderableType, optional): Optional renderable to replace current renderable,
417
+ or None for no change. Defaults to None.
418
+ style: (Style, optional): Replacement style, or None for no change. Defaults to None.
419
+ """
420
+ if renderables:
421
+ self.screen.renderable = (
422
+ Group(*renderables) if len(renderables) > 1 else renderables[0]
423
+ )
424
+ if style is not None:
425
+ self.screen.style = style
426
+ self.console.print(self.screen, end="")
427
+
428
+ def __enter__(self) -> "ScreenContext":
429
+ self._changed = self.console.set_alt_screen(True)
430
+ if self._changed and self.hide_cursor:
431
+ self.console.show_cursor(False)
432
+ return self
433
+
434
+ def __exit__(
435
+ self,
436
+ exc_type: Optional[Type[BaseException]],
437
+ exc_val: Optional[BaseException],
438
+ exc_tb: Optional[TracebackType],
439
+ ) -> None:
440
+ if self._changed:
441
+ self.console.set_alt_screen(False)
442
+ if self.hide_cursor:
443
+ self.console.show_cursor(True)
444
+
445
+
446
+ class Group:
447
+ """Takes a group of renderables and returns a renderable object that renders the group.
448
+
449
+ Args:
450
+ renderables (Iterable[RenderableType]): An iterable of renderable objects.
451
+ fit (bool, optional): Fit dimension of group to contents, or fill available space. Defaults to True.
452
+ """
453
+
454
+ def __init__(self, *renderables: "RenderableType", fit: bool = True) -> None:
455
+ self._renderables = renderables
456
+ self.fit = fit
457
+ self._render: Optional[List[RenderableType]] = None
458
+
459
+ @property
460
+ def renderables(self) -> List["RenderableType"]:
461
+ if self._render is None:
462
+ self._render = list(self._renderables)
463
+ return self._render
464
+
465
+ def __rich_measure__(
466
+ self, console: "Console", options: "ConsoleOptions"
467
+ ) -> "Measurement":
468
+ if self.fit:
469
+ return measure_renderables(console, options, self.renderables)
470
+ else:
471
+ return Measurement(options.max_width, options.max_width)
472
+
473
+ def __rich_console__(
474
+ self, console: "Console", options: "ConsoleOptions"
475
+ ) -> RenderResult:
476
+ yield from self.renderables
477
+
478
+
479
+ def group(fit: bool = True) -> Callable[..., Callable[..., Group]]:
480
+ """A decorator that turns an iterable of renderables in to a group.
481
+
482
+ Args:
483
+ fit (bool, optional): Fit dimension of group to contents, or fill available space. Defaults to True.
484
+ """
485
+
486
+ def decorator(
487
+ method: Callable[..., Iterable[RenderableType]]
488
+ ) -> Callable[..., Group]:
489
+ """Convert a method that returns an iterable of renderables in to a Group."""
490
+
491
+ @wraps(method)
492
+ def _replace(*args: Any, **kwargs: Any) -> Group:
493
+ renderables = method(*args, **kwargs)
494
+ return Group(*renderables, fit=fit)
495
+
496
+ return _replace
497
+
498
+ return decorator
499
+
500
+
501
+ def _is_jupyter() -> bool: # pragma: no cover
502
+ """Check if we're running in a Jupyter notebook."""
503
+ try:
504
+ get_ipython # type: ignore
505
+ except NameError:
506
+ return False
507
+ ipython = get_ipython() # type: ignore
508
+ shell = ipython.__class__.__name__
509
+ if "google.colab" in str(ipython.__class__) or shell == "ZMQInteractiveShell":
510
+ return True # Jupyter notebook or qtconsole
511
+ elif shell == "TerminalInteractiveShell":
512
+ return False # Terminal running IPython
513
+ else:
514
+ return False # Other type (?)
515
+
516
+
517
+ COLOR_SYSTEMS = {
518
+ "standard": ColorSystem.STANDARD,
519
+ "256": ColorSystem.EIGHT_BIT,
520
+ "truecolor": ColorSystem.TRUECOLOR,
521
+ "windows": ColorSystem.WINDOWS,
522
+ }
523
+
524
+
525
+ _COLOR_SYSTEMS_NAMES = {system: name for name, system in COLOR_SYSTEMS.items()}
526
+
527
+
528
+ @dataclass
529
+ class ConsoleThreadLocals(threading.local):
530
+ """Thread local values for Console context."""
531
+
532
+ theme_stack: ThemeStack
533
+ buffer: List[Segment] = field(default_factory=list)
534
+ buffer_index: int = 0
535
+
536
+
537
+ class RenderHook(ABC):
538
+ """Provides hooks in to the render process."""
539
+
540
+ @abstractmethod
541
+ def process_renderables(
542
+ self, renderables: List[ConsoleRenderable]
543
+ ) -> List[ConsoleRenderable]:
544
+ """Called with a list of objects to render.
545
+
546
+ This method can return a new list of renderables, or modify and return the same list.
547
+
548
+ Args:
549
+ renderables (List[ConsoleRenderable]): A number of renderable objects.
550
+
551
+ Returns:
552
+ List[ConsoleRenderable]: A replacement list of renderables.
553
+ """
554
+
555
+
556
+ _windows_console_features: Optional["WindowsConsoleFeatures"] = None
557
+
558
+
559
+ def get_windows_console_features() -> "WindowsConsoleFeatures": # pragma: no cover
560
+ global _windows_console_features
561
+ if _windows_console_features is not None:
562
+ return _windows_console_features
563
+ from ._windows import get_windows_console_features
564
+
565
+ _windows_console_features = get_windows_console_features()
566
+ return _windows_console_features
567
+
568
+
569
+ def detect_legacy_windows() -> bool:
570
+ """Detect legacy Windows."""
571
+ return WINDOWS and not get_windows_console_features().vt
572
+
573
+
574
+ if detect_legacy_windows(): # pragma: no cover
575
+ from pip._vendor.colorama import init
576
+
577
+ init(strip=False)
578
+
579
+
580
+ class Console:
581
+ """A high level console interface.
582
+
583
+ Args:
584
+ color_system (str, optional): The color system supported by your terminal,
585
+ either ``"standard"``, ``"256"`` or ``"truecolor"``. Leave as ``"auto"`` to autodetect.
586
+ force_terminal (Optional[bool], optional): Enable/disable terminal control codes, or None to auto-detect terminal. Defaults to None.
587
+ force_jupyter (Optional[bool], optional): Enable/disable Jupyter rendering, or None to auto-detect Jupyter. Defaults to None.
588
+ force_interactive (Optional[bool], optional): Enable/disable interactive mode, or None to auto detect. Defaults to None.
589
+ soft_wrap (Optional[bool], optional): Set soft wrap default on print method. Defaults to False.
590
+ theme (Theme, optional): An optional style theme object, or ``None`` for default theme.
591
+ stderr (bool, optional): Use stderr rather than stdout if ``file`` is not specified. Defaults to False.
592
+ file (IO, optional): A file object where the console should write to. Defaults to stdout.
593
+ quiet (bool, Optional): Boolean to suppress all output. Defaults to False.
594
+ width (int, optional): The width of the terminal. Leave as default to auto-detect width.
595
+ height (int, optional): The height of the terminal. Leave as default to auto-detect height.
596
+ style (StyleType, optional): Style to apply to all output, or None for no style. Defaults to None.
597
+ no_color (Optional[bool], optional): Enabled no color mode, or None to auto detect. Defaults to None.
598
+ tab_size (int, optional): Number of spaces used to replace a tab character. Defaults to 8.
599
+ record (bool, optional): Boolean to enable recording of terminal output,
600
+ required to call :meth:`export_html` and :meth:`export_text`. Defaults to False.
601
+ markup (bool, optional): Boolean to enable :ref:`console_markup`. Defaults to True.
602
+ emoji (bool, optional): Enable emoji code. Defaults to True.
603
+ emoji_variant (str, optional): Optional emoji variant, either "text" or "emoji". Defaults to None.
604
+ highlight (bool, optional): Enable automatic highlighting. Defaults to True.
605
+ log_time (bool, optional): Boolean to enable logging of time by :meth:`log` methods. Defaults to True.
606
+ log_path (bool, optional): Boolean to enable the logging of the caller by :meth:`log`. Defaults to True.
607
+ log_time_format (Union[str, TimeFormatterCallable], optional): If ``log_time`` is enabled, either string for strftime or callable that formats the time. Defaults to "[%X] ".
608
+ highlighter (HighlighterType, optional): Default highlighter.
609
+ legacy_windows (bool, optional): Enable legacy Windows mode, or ``None`` to auto detect. Defaults to ``None``.
610
+ safe_box (bool, optional): Restrict box options that don't render on legacy Windows.
611
+ get_datetime (Callable[[], datetime], optional): Callable that gets the current time as a datetime.datetime object (used by Console.log),
612
+ or None for datetime.now.
613
+ get_time (Callable[[], time], optional): Callable that gets the current time in seconds, default uses time.monotonic.
614
+ """
615
+
616
+ _environ: Mapping[str, str] = os.environ
617
+
618
+ def __init__(
619
+ self,
620
+ *,
621
+ color_system: Optional[
622
+ Literal["auto", "standard", "256", "truecolor", "windows"]
623
+ ] = "auto",
624
+ force_terminal: Optional[bool] = None,
625
+ force_jupyter: Optional[bool] = None,
626
+ force_interactive: Optional[bool] = None,
627
+ soft_wrap: bool = False,
628
+ theme: Optional[Theme] = None,
629
+ stderr: bool = False,
630
+ file: Optional[IO[str]] = None,
631
+ quiet: bool = False,
632
+ width: Optional[int] = None,
633
+ height: Optional[int] = None,
634
+ style: Optional[StyleType] = None,
635
+ no_color: Optional[bool] = None,
636
+ tab_size: int = 8,
637
+ record: bool = False,
638
+ markup: bool = True,
639
+ emoji: bool = True,
640
+ emoji_variant: Optional[EmojiVariant] = None,
641
+ highlight: bool = True,
642
+ log_time: bool = True,
643
+ log_path: bool = True,
644
+ log_time_format: Union[str, FormatTimeCallable] = "[%X]",
645
+ highlighter: Optional["HighlighterType"] = ReprHighlighter(),
646
+ legacy_windows: Optional[bool] = None,
647
+ safe_box: bool = True,
648
+ get_datetime: Optional[Callable[[], datetime]] = None,
649
+ get_time: Optional[Callable[[], float]] = None,
650
+ _environ: Optional[Mapping[str, str]] = None,
651
+ ):
652
+ # Copy of os.environ allows us to replace it for testing
653
+ if _environ is not None:
654
+ self._environ = _environ
655
+
656
+ self.is_jupyter = _is_jupyter() if force_jupyter is None else force_jupyter
657
+ if self.is_jupyter:
658
+ width = width or 93
659
+ height = height or 100
660
+
661
+ self.soft_wrap = soft_wrap
662
+ self._width = width
663
+ self._height = height
664
+ self.tab_size = tab_size
665
+ self.record = record
666
+ self._markup = markup
667
+ self._emoji = emoji
668
+ self._emoji_variant: Optional[EmojiVariant] = emoji_variant
669
+ self._highlight = highlight
670
+ self.legacy_windows: bool = (
671
+ (detect_legacy_windows() and not self.is_jupyter)
672
+ if legacy_windows is None
673
+ else legacy_windows
674
+ )
675
+ if width is None:
676
+ columns = self._environ.get("COLUMNS")
677
+ if columns is not None and columns.isdigit():
678
+ width = int(columns) - self.legacy_windows
679
+ if height is None:
680
+ lines = self._environ.get("LINES")
681
+ if lines is not None and lines.isdigit():
682
+ height = int(lines)
683
+
684
+ self.soft_wrap = soft_wrap
685
+ self._width = width
686
+ self._height = height
687
+
688
+ self._color_system: Optional[ColorSystem]
689
+ self._force_terminal = force_terminal
690
+ self._file = file
691
+ self.quiet = quiet
692
+ self.stderr = stderr
693
+
694
+ if color_system is None:
695
+ self._color_system = None
696
+ elif color_system == "auto":
697
+ self._color_system = self._detect_color_system()
698
+ else:
699
+ self._color_system = COLOR_SYSTEMS[color_system]
700
+
701
+ self._lock = threading.RLock()
702
+ self._log_render = LogRender(
703
+ show_time=log_time,
704
+ show_path=log_path,
705
+ time_format=log_time_format,
706
+ )
707
+ self.highlighter: HighlighterType = highlighter or _null_highlighter
708
+ self.safe_box = safe_box
709
+ self.get_datetime = get_datetime or datetime.now
710
+ self.get_time = get_time or monotonic
711
+ self.style = style
712
+ self.no_color = (
713
+ no_color if no_color is not None else "NO_COLOR" in self._environ
714
+ )
715
+ self.is_interactive = (
716
+ (self.is_terminal and not self.is_dumb_terminal)
717
+ if force_interactive is None
718
+ else force_interactive
719
+ )
720
+
721
+ self._record_buffer_lock = threading.RLock()
722
+ self._thread_locals = ConsoleThreadLocals(
723
+ theme_stack=ThemeStack(themes.DEFAULT if theme is None else theme)
724
+ )
725
+ self._record_buffer: List[Segment] = []
726
+ self._render_hooks: List[RenderHook] = []
727
+ self._live: Optional["Live"] = None
728
+ self._is_alt_screen = False
729
+
730
+ def __repr__(self) -> str:
731
+ return f"<console width={self.width} {str(self._color_system)}>"
732
+
733
+ @property
734
+ def file(self) -> IO[str]:
735
+ """Get the file object to write to."""
736
+ file = self._file or (sys.stderr if self.stderr else sys.stdout)
737
+ file = getattr(file, "rich_proxied_file", file)
738
+ return file
739
+
740
+ @file.setter
741
+ def file(self, new_file: IO[str]) -> None:
742
+ """Set a new file object."""
743
+ self._file = new_file
744
+
745
+ @property
746
+ def _buffer(self) -> List[Segment]:
747
+ """Get a thread local buffer."""
748
+ return self._thread_locals.buffer
749
+
750
+ @property
751
+ def _buffer_index(self) -> int:
752
+ """Get a thread local buffer."""
753
+ return self._thread_locals.buffer_index
754
+
755
+ @_buffer_index.setter
756
+ def _buffer_index(self, value: int) -> None:
757
+ self._thread_locals.buffer_index = value
758
+
759
+ @property
760
+ def _theme_stack(self) -> ThemeStack:
761
+ """Get the thread local theme stack."""
762
+ return self._thread_locals.theme_stack
763
+
764
+ def _detect_color_system(self) -> Optional[ColorSystem]:
765
+ """Detect color system from env vars."""
766
+ if self.is_jupyter:
767
+ return ColorSystem.TRUECOLOR
768
+ if not self.is_terminal or self.is_dumb_terminal:
769
+ return None
770
+ if WINDOWS: # pragma: no cover
771
+ if self.legacy_windows: # pragma: no cover
772
+ return ColorSystem.WINDOWS
773
+ windows_console_features = get_windows_console_features()
774
+ return (
775
+ ColorSystem.TRUECOLOR
776
+ if windows_console_features.truecolor
777
+ else ColorSystem.EIGHT_BIT
778
+ )
779
+ else:
780
+ color_term = self._environ.get("COLORTERM", "").strip().lower()
781
+ if color_term in ("truecolor", "24bit"):
782
+ return ColorSystem.TRUECOLOR
783
+ term = self._environ.get("TERM", "").strip().lower()
784
+ _term_name, _hyphen, colors = term.rpartition("-")
785
+ color_system = _TERM_COLORS.get(colors, ColorSystem.STANDARD)
786
+ return color_system
787
+
788
+ def _enter_buffer(self) -> None:
789
+ """Enter in to a buffer context, and buffer all output."""
790
+ self._buffer_index += 1
791
+
792
+ def _exit_buffer(self) -> None:
793
+ """Leave buffer context, and render content if required."""
794
+ self._buffer_index -= 1
795
+ self._check_buffer()
796
+
797
+ def set_live(self, live: "Live") -> None:
798
+ """Set Live instance. Used by Live context manager.
799
+
800
+ Args:
801
+ live (Live): Live instance using this Console.
802
+
803
+ Raises:
804
+ errors.LiveError: If this Console has a Live context currently active.
805
+ """
806
+ with self._lock:
807
+ if self._live is not None:
808
+ raise errors.LiveError("Only one live display may be active at once")
809
+ self._live = live
810
+
811
+ def clear_live(self) -> None:
812
+ """Clear the Live instance."""
813
+ with self._lock:
814
+ self._live = None
815
+
816
+ def push_render_hook(self, hook: RenderHook) -> None:
817
+ """Add a new render hook to the stack.
818
+
819
+ Args:
820
+ hook (RenderHook): Render hook instance.
821
+ """
822
+ with self._lock:
823
+ self._render_hooks.append(hook)
824
+
825
+ def pop_render_hook(self) -> None:
826
+ """Pop the last renderhook from the stack."""
827
+ with self._lock:
828
+ self._render_hooks.pop()
829
+
830
+ def __enter__(self) -> "Console":
831
+ """Own context manager to enter buffer context."""
832
+ self._enter_buffer()
833
+ return self
834
+
835
+ def __exit__(self, exc_type: Any, exc_value: Any, traceback: Any) -> None:
836
+ """Exit buffer context."""
837
+ self._exit_buffer()
838
+
839
+ def begin_capture(self) -> None:
840
+ """Begin capturing console output. Call :meth:`end_capture` to exit capture mode and return output."""
841
+ self._enter_buffer()
842
+
843
+ def end_capture(self) -> str:
844
+ """End capture mode and return captured string.
845
+
846
+ Returns:
847
+ str: Console output.
848
+ """
849
+ render_result = self._render_buffer(self._buffer)
850
+ del self._buffer[:]
851
+ self._exit_buffer()
852
+ return render_result
853
+
854
+ def push_theme(self, theme: Theme, *, inherit: bool = True) -> None:
855
+ """Push a new theme on to the top of the stack, replacing the styles from the previous theme.
856
+ Generally speaking, you should call :meth:`~rich.console.Console.use_theme` to get a context manager, rather
857
+ than calling this method directly.
858
+
859
+ Args:
860
+ theme (Theme): A theme instance.
861
+ inherit (bool, optional): Inherit existing styles. Defaults to True.
862
+ """
863
+ self._theme_stack.push_theme(theme, inherit=inherit)
864
+
865
+ def pop_theme(self) -> None:
866
+ """Remove theme from top of stack, restoring previous theme."""
867
+ self._theme_stack.pop_theme()
868
+
869
+ def use_theme(self, theme: Theme, *, inherit: bool = True) -> ThemeContext:
870
+ """Use a different theme for the duration of the context manager.
871
+
872
+ Args:
873
+ theme (Theme): Theme instance to user.
874
+ inherit (bool, optional): Inherit existing console styles. Defaults to True.
875
+
876
+ Returns:
877
+ ThemeContext: [description]
878
+ """
879
+ return ThemeContext(self, theme, inherit)
880
+
881
+ @property
882
+ def color_system(self) -> Optional[str]:
883
+ """Get color system string.
884
+
885
+ Returns:
886
+ Optional[str]: "standard", "256" or "truecolor".
887
+ """
888
+
889
+ if self._color_system is not None:
890
+ return _COLOR_SYSTEMS_NAMES[self._color_system]
891
+ else:
892
+ return None
893
+
894
+ @property
895
+ def encoding(self) -> str:
896
+ """Get the encoding of the console file, e.g. ``"utf-8"``.
897
+
898
+ Returns:
899
+ str: A standard encoding string.
900
+ """
901
+ return (getattr(self.file, "encoding", "utf-8") or "utf-8").lower()
902
+
903
+ @property
904
+ def is_terminal(self) -> bool:
905
+ """Check if the console is writing to a terminal.
906
+
907
+ Returns:
908
+ bool: True if the console writing to a device capable of
909
+ understanding terminal codes, otherwise False.
910
+ """
911
+ if self._force_terminal is not None:
912
+ return self._force_terminal
913
+ isatty: Optional[Callable[[], bool]] = getattr(self.file, "isatty", None)
914
+ try:
915
+ return False if isatty is None else isatty()
916
+ except ValueError:
917
+ # in some situation (at the end of a pytest run for example) isatty() can raise
918
+ # ValueError: I/O operation on closed file
919
+ # return False because we aren't in a terminal anymore
920
+ return False
921
+
922
+ @property
923
+ def is_dumb_terminal(self) -> bool:
924
+ """Detect dumb terminal.
925
+
926
+ Returns:
927
+ bool: True if writing to a dumb terminal, otherwise False.
928
+
929
+ """
930
+ _term = self._environ.get("TERM", "")
931
+ is_dumb = _term.lower() in ("dumb", "unknown")
932
+ return self.is_terminal and is_dumb
933
+
934
+ @property
935
+ def options(self) -> ConsoleOptions:
936
+ """Get default console options."""
937
+ return ConsoleOptions(
938
+ max_height=self.size.height,
939
+ size=self.size,
940
+ legacy_windows=self.legacy_windows,
941
+ min_width=1,
942
+ max_width=self.width,
943
+ encoding=self.encoding,
944
+ is_terminal=self.is_terminal,
945
+ )
946
+
947
+ @property
948
+ def size(self) -> ConsoleDimensions:
949
+ """Get the size of the console.
950
+
951
+ Returns:
952
+ ConsoleDimensions: A named tuple containing the dimensions.
953
+ """
954
+
955
+ if self._width is not None and self._height is not None:
956
+ return ConsoleDimensions(self._width - self.legacy_windows, self._height)
957
+
958
+ if self.is_dumb_terminal:
959
+ return ConsoleDimensions(80, 25)
960
+
961
+ width: Optional[int] = None
962
+ height: Optional[int] = None
963
+
964
+ if WINDOWS: # pragma: no cover
965
+ try:
966
+ width, height = os.get_terminal_size()
967
+ except OSError: # Probably not a terminal
968
+ pass
969
+ else:
970
+ try:
971
+ width, height = os.get_terminal_size(sys.__stdin__.fileno())
972
+ except (AttributeError, ValueError, OSError):
973
+ try:
974
+ width, height = os.get_terminal_size(sys.__stdout__.fileno())
975
+ except (AttributeError, ValueError, OSError):
976
+ pass
977
+
978
+ columns = self._environ.get("COLUMNS")
979
+ if columns is not None and columns.isdigit():
980
+ width = int(columns)
981
+ lines = self._environ.get("LINES")
982
+ if lines is not None and lines.isdigit():
983
+ height = int(lines)
984
+
985
+ # get_terminal_size can report 0, 0 if run from pseudo-terminal
986
+ width = width or 80
987
+ height = height or 25
988
+ return ConsoleDimensions(
989
+ width - self.legacy_windows if self._width is None else self._width,
990
+ height if self._height is None else self._height,
991
+ )
992
+
993
+ @size.setter
994
+ def size(self, new_size: Tuple[int, int]) -> None:
995
+ """Set a new size for the terminal.
996
+
997
+ Args:
998
+ new_size (Tuple[int, int]): New width and height.
999
+ """
1000
+ width, height = new_size
1001
+ self._width = width
1002
+ self._height = height
1003
+
1004
+ @property
1005
+ def width(self) -> int:
1006
+ """Get the width of the console.
1007
+
1008
+ Returns:
1009
+ int: The width (in characters) of the console.
1010
+ """
1011
+ return self.size.width
1012
+
1013
+ @width.setter
1014
+ def width(self, width: int) -> None:
1015
+ """Set width.
1016
+
1017
+ Args:
1018
+ width (int): New width.
1019
+ """
1020
+ self._width = width
1021
+
1022
+ @property
1023
+ def height(self) -> int:
1024
+ """Get the height of the console.
1025
+
1026
+ Returns:
1027
+ int: The height (in lines) of the console.
1028
+ """
1029
+ return self.size.height
1030
+
1031
+ @height.setter
1032
+ def height(self, height: int) -> None:
1033
+ """Set height.
1034
+
1035
+ Args:
1036
+ height (int): new height.
1037
+ """
1038
+ self._height = height
1039
+
1040
+ def bell(self) -> None:
1041
+ """Play a 'bell' sound (if supported by the terminal)."""
1042
+ self.control(Control.bell())
1043
+
1044
+ def capture(self) -> Capture:
1045
+ """A context manager to *capture* the result of print() or log() in a string,
1046
+ rather than writing it to the console.
1047
+
1048
+ Example:
1049
+ >>> from rich.console import Console
1050
+ >>> console = Console()
1051
+ >>> with console.capture() as capture:
1052
+ ... console.print("[bold magenta]Hello World[/]")
1053
+ >>> print(capture.get())
1054
+
1055
+ Returns:
1056
+ Capture: Context manager with disables writing to the terminal.
1057
+ """
1058
+ capture = Capture(self)
1059
+ return capture
1060
+
1061
+ def pager(
1062
+ self, pager: Optional[Pager] = None, styles: bool = False, links: bool = False
1063
+ ) -> PagerContext:
1064
+ """A context manager to display anything printed within a "pager". The pager application
1065
+ is defined by the system and will typically support at least pressing a key to scroll.
1066
+
1067
+ Args:
1068
+ pager (Pager, optional): A pager object, or None to use :class:`~rich.pager.SystemPager`. Defaults to None.
1069
+ styles (bool, optional): Show styles in pager. Defaults to False.
1070
+ links (bool, optional): Show links in pager. Defaults to False.
1071
+
1072
+ Example:
1073
+ >>> from rich.console import Console
1074
+ >>> from rich.__main__ import make_test_card
1075
+ >>> console = Console()
1076
+ >>> with console.pager():
1077
+ console.print(make_test_card())
1078
+
1079
+ Returns:
1080
+ PagerContext: A context manager.
1081
+ """
1082
+ return PagerContext(self, pager=pager, styles=styles, links=links)
1083
+
1084
+ def line(self, count: int = 1) -> None:
1085
+ """Write new line(s).
1086
+
1087
+ Args:
1088
+ count (int, optional): Number of new lines. Defaults to 1.
1089
+ """
1090
+
1091
+ assert count >= 0, "count must be >= 0"
1092
+ self.print(NewLine(count))
1093
+
1094
+ def clear(self, home: bool = True) -> None:
1095
+ """Clear the screen.
1096
+
1097
+ Args:
1098
+ home (bool, optional): Also move the cursor to 'home' position. Defaults to True.
1099
+ """
1100
+ if home:
1101
+ self.control(Control.clear(), Control.home())
1102
+ else:
1103
+ self.control(Control.clear())
1104
+
1105
+ def status(
1106
+ self,
1107
+ status: RenderableType,
1108
+ *,
1109
+ spinner: str = "dots",
1110
+ spinner_style: str = "status.spinner",
1111
+ speed: float = 1.0,
1112
+ refresh_per_second: float = 12.5,
1113
+ ) -> "Status":
1114
+ """Display a status and spinner.
1115
+
1116
+ Args:
1117
+ status (RenderableType): A status renderable (str or Text typically).
1118
+ spinner (str, optional): Name of spinner animation (see python -m rich.spinner). Defaults to "dots".
1119
+ spinner_style (StyleType, optional): Style of spinner. Defaults to "status.spinner".
1120
+ speed (float, optional): Speed factor for spinner animation. Defaults to 1.0.
1121
+ refresh_per_second (float, optional): Number of refreshes per second. Defaults to 12.5.
1122
+
1123
+ Returns:
1124
+ Status: A Status object that may be used as a context manager.
1125
+ """
1126
+ from .status import Status
1127
+
1128
+ status_renderable = Status(
1129
+ status,
1130
+ console=self,
1131
+ spinner=spinner,
1132
+ spinner_style=spinner_style,
1133
+ speed=speed,
1134
+ refresh_per_second=refresh_per_second,
1135
+ )
1136
+ return status_renderable
1137
+
1138
+ def show_cursor(self, show: bool = True) -> bool:
1139
+ """Show or hide the cursor.
1140
+
1141
+ Args:
1142
+ show (bool, optional): Set visibility of the cursor.
1143
+ """
1144
+ if self.is_terminal and not self.legacy_windows:
1145
+ self.control(Control.show_cursor(show))
1146
+ return True
1147
+ return False
1148
+
1149
+ def set_alt_screen(self, enable: bool = True) -> bool:
1150
+ """Enables alternative screen mode.
1151
+
1152
+ Note, if you enable this mode, you should ensure that is disabled before
1153
+ the application exits. See :meth:`~rich.Console.screen` for a context manager
1154
+ that handles this for you.
1155
+
1156
+ Args:
1157
+ enable (bool, optional): Enable (True) or disable (False) alternate screen. Defaults to True.
1158
+
1159
+ Returns:
1160
+ bool: True if the control codes were written.
1161
+
1162
+ """
1163
+ changed = False
1164
+ if self.is_terminal and not self.legacy_windows:
1165
+ self.control(Control.alt_screen(enable))
1166
+ changed = True
1167
+ self._is_alt_screen = enable
1168
+ return changed
1169
+
1170
+ @property
1171
+ def is_alt_screen(self) -> bool:
1172
+ """Check if the alt screen was enabled.
1173
+
1174
+ Returns:
1175
+ bool: True if the alt screen was enabled, otherwise False.
1176
+ """
1177
+ return self._is_alt_screen
1178
+
1179
+ def screen(
1180
+ self, hide_cursor: bool = True, style: Optional[StyleType] = None
1181
+ ) -> "ScreenContext":
1182
+ """Context manager to enable and disable 'alternative screen' mode.
1183
+
1184
+ Args:
1185
+ hide_cursor (bool, optional): Also hide the cursor. Defaults to False.
1186
+ style (Style, optional): Optional style for screen. Defaults to None.
1187
+
1188
+ Returns:
1189
+ ~ScreenContext: Context which enables alternate screen on enter, and disables it on exit.
1190
+ """
1191
+ return ScreenContext(self, hide_cursor=hide_cursor, style=style or "")
1192
+
1193
+ def measure(
1194
+ self, renderable: RenderableType, *, options: Optional[ConsoleOptions] = None
1195
+ ) -> Measurement:
1196
+ """Measure a renderable. Returns a :class:`~rich.measure.Measurement` object which contains
1197
+ information regarding the number of characters required to print the renderable.
1198
+
1199
+ Args:
1200
+ renderable (RenderableType): Any renderable or string.
1201
+ options (Optional[ConsoleOptions], optional): Options to use when measuring, or None
1202
+ to use default options. Defaults to None.
1203
+
1204
+ Returns:
1205
+ Measurement: A measurement of the renderable.
1206
+ """
1207
+ measurement = Measurement.get(self, options or self.options, renderable)
1208
+ return measurement
1209
+
1210
+ def render(
1211
+ self, renderable: RenderableType, options: Optional[ConsoleOptions] = None
1212
+ ) -> Iterable[Segment]:
1213
+ """Render an object in to an iterable of `Segment` instances.
1214
+
1215
+ This method contains the logic for rendering objects with the console protocol.
1216
+ You are unlikely to need to use it directly, unless you are extending the library.
1217
+
1218
+ Args:
1219
+ renderable (RenderableType): An object supporting the console protocol, or
1220
+ an object that may be converted to a string.
1221
+ options (ConsoleOptions, optional): An options object, or None to use self.options. Defaults to None.
1222
+
1223
+ Returns:
1224
+ Iterable[Segment]: An iterable of segments that may be rendered.
1225
+ """
1226
+
1227
+ _options = options or self.options
1228
+ if _options.max_width < 1:
1229
+ # No space to render anything. This prevents potential recursion errors.
1230
+ return
1231
+ render_iterable: RenderResult
1232
+
1233
+ renderable = rich_cast(renderable)
1234
+ if hasattr(renderable, "__rich_console__") and not isclass(renderable):
1235
+ render_iterable = renderable.__rich_console__(self, _options) # type: ignore
1236
+ elif isinstance(renderable, str):
1237
+ text_renderable = self.render_str(
1238
+ renderable, highlight=_options.highlight, markup=_options.markup
1239
+ )
1240
+ render_iterable = text_renderable.__rich_console__(self, _options)
1241
+ else:
1242
+ raise errors.NotRenderableError(
1243
+ f"Unable to render {renderable!r}; "
1244
+ "A str, Segment or object with __rich_console__ method is required"
1245
+ )
1246
+
1247
+ try:
1248
+ iter_render = iter(render_iterable)
1249
+ except TypeError:
1250
+ raise errors.NotRenderableError(
1251
+ f"object {render_iterable!r} is not renderable"
1252
+ )
1253
+ _Segment = Segment
1254
+ for render_output in iter_render:
1255
+ if isinstance(render_output, _Segment):
1256
+ yield render_output
1257
+ else:
1258
+ yield from self.render(render_output, _options)
1259
+
1260
+ def render_lines(
1261
+ self,
1262
+ renderable: RenderableType,
1263
+ options: Optional[ConsoleOptions] = None,
1264
+ *,
1265
+ style: Optional[Style] = None,
1266
+ pad: bool = True,
1267
+ new_lines: bool = False,
1268
+ ) -> List[List[Segment]]:
1269
+ """Render objects in to a list of lines.
1270
+
1271
+ The output of render_lines is useful when further formatting of rendered console text
1272
+ is required, such as the Panel class which draws a border around any renderable object.
1273
+
1274
+ Args:
1275
+ renderable (RenderableType): Any object renderable in the console.
1276
+ options (Optional[ConsoleOptions], optional): Console options, or None to use self.options. Default to ``None``.
1277
+ style (Style, optional): Optional style to apply to renderables. Defaults to ``None``.
1278
+ pad (bool, optional): Pad lines shorter than render width. Defaults to ``True``.
1279
+ new_lines (bool, optional): Include "\n" characters at end of lines.
1280
+
1281
+ Returns:
1282
+ List[List[Segment]]: A list of lines, where a line is a list of Segment objects.
1283
+ """
1284
+ with self._lock:
1285
+ render_options = options or self.options
1286
+ _rendered = self.render(renderable, render_options)
1287
+ if style:
1288
+ _rendered = Segment.apply_style(_rendered, style)
1289
+ lines = list(
1290
+ islice(
1291
+ Segment.split_and_crop_lines(
1292
+ _rendered,
1293
+ render_options.max_width,
1294
+ include_new_lines=new_lines,
1295
+ pad=pad,
1296
+ ),
1297
+ None,
1298
+ render_options.height,
1299
+ )
1300
+ )
1301
+ if render_options.height is not None:
1302
+ extra_lines = render_options.height - len(lines)
1303
+ if extra_lines > 0:
1304
+ pad_line = [
1305
+ [Segment(" " * render_options.max_width, style), Segment("\n")]
1306
+ if new_lines
1307
+ else [Segment(" " * render_options.max_width, style)]
1308
+ ]
1309
+ lines.extend(pad_line * extra_lines)
1310
+
1311
+ return lines
1312
+
1313
+ def render_str(
1314
+ self,
1315
+ text: str,
1316
+ *,
1317
+ style: Union[str, Style] = "",
1318
+ justify: Optional[JustifyMethod] = None,
1319
+ overflow: Optional[OverflowMethod] = None,
1320
+ emoji: Optional[bool] = None,
1321
+ markup: Optional[bool] = None,
1322
+ highlight: Optional[bool] = None,
1323
+ highlighter: Optional[HighlighterType] = None,
1324
+ ) -> "Text":
1325
+ """Convert a string to a Text instance. This is is called automatically if
1326
+ you print or log a string.
1327
+
1328
+ Args:
1329
+ text (str): Text to render.
1330
+ style (Union[str, Style], optional): Style to apply to rendered text.
1331
+ justify (str, optional): Justify method: "default", "left", "center", "full", or "right". Defaults to ``None``.
1332
+ overflow (str, optional): Overflow method: "crop", "fold", or "ellipsis". Defaults to ``None``.
1333
+ emoji (Optional[bool], optional): Enable emoji, or ``None`` to use Console default.
1334
+ markup (Optional[bool], optional): Enable markup, or ``None`` to use Console default.
1335
+ highlight (Optional[bool], optional): Enable highlighting, or ``None`` to use Console default.
1336
+ highlighter (HighlighterType, optional): Optional highlighter to apply.
1337
+ Returns:
1338
+ ConsoleRenderable: Renderable object.
1339
+
1340
+ """
1341
+ emoji_enabled = emoji or (emoji is None and self._emoji)
1342
+ markup_enabled = markup or (markup is None and self._markup)
1343
+ highlight_enabled = highlight or (highlight is None and self._highlight)
1344
+
1345
+ if markup_enabled:
1346
+ rich_text = render_markup(
1347
+ text,
1348
+ style=style,
1349
+ emoji=emoji_enabled,
1350
+ emoji_variant=self._emoji_variant,
1351
+ )
1352
+ rich_text.justify = justify
1353
+ rich_text.overflow = overflow
1354
+ else:
1355
+ rich_text = Text(
1356
+ _emoji_replace(text, default_variant=self._emoji_variant)
1357
+ if emoji_enabled
1358
+ else text,
1359
+ justify=justify,
1360
+ overflow=overflow,
1361
+ style=style,
1362
+ )
1363
+
1364
+ _highlighter = (highlighter or self.highlighter) if highlight_enabled else None
1365
+ if _highlighter is not None:
1366
+ highlight_text = _highlighter(str(rich_text))
1367
+ highlight_text.copy_styles(rich_text)
1368
+ return highlight_text
1369
+
1370
+ return rich_text
1371
+
1372
+ def get_style(
1373
+ self, name: Union[str, Style], *, default: Optional[Union[Style, str]] = None
1374
+ ) -> Style:
1375
+ """Get a Style instance by it's theme name or parse a definition.
1376
+
1377
+ Args:
1378
+ name (str): The name of a style or a style definition.
1379
+
1380
+ Returns:
1381
+ Style: A Style object.
1382
+
1383
+ Raises:
1384
+ MissingStyle: If no style could be parsed from name.
1385
+
1386
+ """
1387
+ if isinstance(name, Style):
1388
+ return name
1389
+
1390
+ try:
1391
+ style = self._theme_stack.get(name)
1392
+ if style is None:
1393
+ style = Style.parse(name)
1394
+ return style.copy() if style.link else style
1395
+ except errors.StyleSyntaxError as error:
1396
+ if default is not None:
1397
+ return self.get_style(default)
1398
+ raise errors.MissingStyle(
1399
+ f"Failed to get style {name!r}; {error}"
1400
+ ) from None
1401
+
1402
+ def _collect_renderables(
1403
+ self,
1404
+ objects: Iterable[Any],
1405
+ sep: str,
1406
+ end: str,
1407
+ *,
1408
+ justify: Optional[JustifyMethod] = None,
1409
+ emoji: Optional[bool] = None,
1410
+ markup: Optional[bool] = None,
1411
+ highlight: Optional[bool] = None,
1412
+ ) -> List[ConsoleRenderable]:
1413
+ """Combine a number of renderables and text into one renderable.
1414
+
1415
+ Args:
1416
+ objects (Iterable[Any]): Anything that Rich can render.
1417
+ sep (str): String to write between print data.
1418
+ end (str): String to write at end of print data.
1419
+ justify (str, optional): One of "left", "right", "center", or "full". Defaults to ``None``.
1420
+ emoji (Optional[bool], optional): Enable emoji code, or ``None`` to use console default.
1421
+ markup (Optional[bool], optional): Enable markup, or ``None`` to use console default.
1422
+ highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use console default.
1423
+
1424
+ Returns:
1425
+ List[ConsoleRenderable]: A list of things to render.
1426
+ """
1427
+ renderables: List[ConsoleRenderable] = []
1428
+ _append = renderables.append
1429
+ text: List[Text] = []
1430
+ append_text = text.append
1431
+
1432
+ append = _append
1433
+ if justify in ("left", "center", "right"):
1434
+
1435
+ def align_append(renderable: RenderableType) -> None:
1436
+ _append(Align(renderable, cast(AlignMethod, justify)))
1437
+
1438
+ append = align_append
1439
+
1440
+ _highlighter: HighlighterType = _null_highlighter
1441
+ if highlight or (highlight is None and self._highlight):
1442
+ _highlighter = self.highlighter
1443
+
1444
+ def check_text() -> None:
1445
+ if text:
1446
+ sep_text = Text(sep, justify=justify, end=end)
1447
+ append(sep_text.join(text))
1448
+ del text[:]
1449
+
1450
+ for renderable in objects:
1451
+ renderable = rich_cast(renderable)
1452
+ if isinstance(renderable, str):
1453
+ append_text(
1454
+ self.render_str(
1455
+ renderable, emoji=emoji, markup=markup, highlighter=_highlighter
1456
+ )
1457
+ )
1458
+ elif isinstance(renderable, Text):
1459
+ append_text(renderable)
1460
+ elif isinstance(renderable, ConsoleRenderable):
1461
+ check_text()
1462
+ append(renderable)
1463
+ elif is_expandable(renderable):
1464
+ check_text()
1465
+ append(Pretty(renderable, highlighter=_highlighter))
1466
+ else:
1467
+ append_text(_highlighter(str(renderable)))
1468
+
1469
+ check_text()
1470
+
1471
+ if self.style is not None:
1472
+ style = self.get_style(self.style)
1473
+ renderables = [Styled(renderable, style) for renderable in renderables]
1474
+
1475
+ return renderables
1476
+
1477
+ def rule(
1478
+ self,
1479
+ title: TextType = "",
1480
+ *,
1481
+ characters: str = "─",
1482
+ style: Union[str, Style] = "rule.line",
1483
+ align: AlignMethod = "center",
1484
+ ) -> None:
1485
+ """Draw a line with optional centered title.
1486
+
1487
+ Args:
1488
+ title (str, optional): Text to render over the rule. Defaults to "".
1489
+ characters (str, optional): Character(s) to form the line. Defaults to "─".
1490
+ style (str, optional): Style of line. Defaults to "rule.line".
1491
+ align (str, optional): How to align the title, one of "left", "center", or "right". Defaults to "center".
1492
+ """
1493
+ from .rule import Rule
1494
+
1495
+ rule = Rule(title=title, characters=characters, style=style, align=align)
1496
+ self.print(rule)
1497
+
1498
+ def control(self, *control: Control) -> None:
1499
+ """Insert non-printing control codes.
1500
+
1501
+ Args:
1502
+ control_codes (str): Control codes, such as those that may move the cursor.
1503
+ """
1504
+ if not self.is_dumb_terminal:
1505
+ with self:
1506
+ self._buffer.extend(_control.segment for _control in control)
1507
+
1508
+ def out(
1509
+ self,
1510
+ *objects: Any,
1511
+ sep: str = " ",
1512
+ end: str = "\n",
1513
+ style: Optional[Union[str, Style]] = None,
1514
+ highlight: Optional[bool] = None,
1515
+ ) -> None:
1516
+ """Output to the terminal. This is a low-level way of writing to the terminal which unlike
1517
+ :meth:`~rich.console.Console.print` won't pretty print, wrap text, or apply markup, but will
1518
+ optionally apply highlighting and a basic style.
1519
+
1520
+ Args:
1521
+ sep (str, optional): String to write between print data. Defaults to " ".
1522
+ end (str, optional): String to write at end of print data. Defaults to "\\\\n".
1523
+ style (Union[str, Style], optional): A style to apply to output. Defaults to None.
1524
+ highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use
1525
+ console default. Defaults to ``None``.
1526
+ """
1527
+ raw_output: str = sep.join(str(_object) for _object in objects)
1528
+ self.print(
1529
+ raw_output,
1530
+ style=style,
1531
+ highlight=highlight,
1532
+ emoji=False,
1533
+ markup=False,
1534
+ no_wrap=True,
1535
+ overflow="ignore",
1536
+ crop=False,
1537
+ end=end,
1538
+ )
1539
+
1540
+ def print(
1541
+ self,
1542
+ *objects: Any,
1543
+ sep: str = " ",
1544
+ end: str = "\n",
1545
+ style: Optional[Union[str, Style]] = None,
1546
+ justify: Optional[JustifyMethod] = None,
1547
+ overflow: Optional[OverflowMethod] = None,
1548
+ no_wrap: Optional[bool] = None,
1549
+ emoji: Optional[bool] = None,
1550
+ markup: Optional[bool] = None,
1551
+ highlight: Optional[bool] = None,
1552
+ width: Optional[int] = None,
1553
+ height: Optional[int] = None,
1554
+ crop: bool = True,
1555
+ soft_wrap: Optional[bool] = None,
1556
+ new_line_start: bool = False,
1557
+ ) -> None:
1558
+ """Print to the console.
1559
+
1560
+ Args:
1561
+ objects (positional args): Objects to log to the terminal.
1562
+ sep (str, optional): String to write between print data. Defaults to " ".
1563
+ end (str, optional): String to write at end of print data. Defaults to "\\\\n".
1564
+ style (Union[str, Style], optional): A style to apply to output. Defaults to None.
1565
+ justify (str, optional): Justify method: "default", "left", "right", "center", or "full". Defaults to ``None``.
1566
+ overflow (str, optional): Overflow method: "ignore", "crop", "fold", or "ellipsis". Defaults to None.
1567
+ no_wrap (Optional[bool], optional): Disable word wrapping. Defaults to None.
1568
+ emoji (Optional[bool], optional): Enable emoji code, or ``None`` to use console default. Defaults to ``None``.
1569
+ markup (Optional[bool], optional): Enable markup, or ``None`` to use console default. Defaults to ``None``.
1570
+ highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use console default. Defaults to ``None``.
1571
+ width (Optional[int], optional): Width of output, or ``None`` to auto-detect. Defaults to ``None``.
1572
+ crop (Optional[bool], optional): Crop output to width of terminal. Defaults to True.
1573
+ soft_wrap (bool, optional): Enable soft wrap mode which disables word wrapping and cropping of text or ``None`` for
1574
+ Console default. Defaults to ``None``.
1575
+ new_line_start (bool, False): Insert a new line at the start if the output contains more than one line. Defaults to ``False``.
1576
+ """
1577
+ if not objects:
1578
+ objects = (NewLine(),)
1579
+
1580
+ if soft_wrap is None:
1581
+ soft_wrap = self.soft_wrap
1582
+ if soft_wrap:
1583
+ if no_wrap is None:
1584
+ no_wrap = True
1585
+ if overflow is None:
1586
+ overflow = "ignore"
1587
+ crop = False
1588
+ render_hooks = self._render_hooks[:]
1589
+ with self:
1590
+ renderables = self._collect_renderables(
1591
+ objects,
1592
+ sep,
1593
+ end,
1594
+ justify=justify,
1595
+ emoji=emoji,
1596
+ markup=markup,
1597
+ highlight=highlight,
1598
+ )
1599
+ for hook in render_hooks:
1600
+ renderables = hook.process_renderables(renderables)
1601
+ render_options = self.options.update(
1602
+ justify=justify,
1603
+ overflow=overflow,
1604
+ width=min(width, self.width) if width is not None else NO_CHANGE,
1605
+ height=height,
1606
+ no_wrap=no_wrap,
1607
+ markup=markup,
1608
+ highlight=highlight,
1609
+ )
1610
+
1611
+ new_segments: List[Segment] = []
1612
+ extend = new_segments.extend
1613
+ render = self.render
1614
+ if style is None:
1615
+ for renderable in renderables:
1616
+ extend(render(renderable, render_options))
1617
+ else:
1618
+ for renderable in renderables:
1619
+ extend(
1620
+ Segment.apply_style(
1621
+ render(renderable, render_options), self.get_style(style)
1622
+ )
1623
+ )
1624
+ if new_line_start:
1625
+ if (
1626
+ len("".join(segment.text for segment in new_segments).splitlines())
1627
+ > 1
1628
+ ):
1629
+ new_segments.insert(0, Segment.line())
1630
+ if crop:
1631
+ buffer_extend = self._buffer.extend
1632
+ for line in Segment.split_and_crop_lines(
1633
+ new_segments, self.width, pad=False
1634
+ ):
1635
+ buffer_extend(line)
1636
+ else:
1637
+ self._buffer.extend(new_segments)
1638
+
1639
+ def print_json(
1640
+ self,
1641
+ json: Optional[str] = None,
1642
+ *,
1643
+ data: Any = None,
1644
+ indent: Union[None, int, str] = 2,
1645
+ highlight: bool = True,
1646
+ skip_keys: bool = False,
1647
+ ensure_ascii: bool = True,
1648
+ check_circular: bool = True,
1649
+ allow_nan: bool = True,
1650
+ default: Optional[Callable[[Any], Any]] = None,
1651
+ sort_keys: bool = False,
1652
+ ) -> None:
1653
+ """Pretty prints JSON. Output will be valid JSON.
1654
+
1655
+ Args:
1656
+ json (Optional[str]): A string containing JSON.
1657
+ data (Any): If json is not supplied, then encode this data.
1658
+ indent (Union[None, int, str], optional): Number of spaces to indent. Defaults to 2.
1659
+ highlight (bool, optional): Enable highlighting of output: Defaults to True.
1660
+ skip_keys (bool, optional): Skip keys not of a basic type. Defaults to False.
1661
+ ensure_ascii (bool, optional): Escape all non-ascii characters. Defaults to False.
1662
+ check_circular (bool, optional): Check for circular references. Defaults to True.
1663
+ allow_nan (bool, optional): Allow NaN and Infinity values. Defaults to True.
1664
+ default (Callable, optional): A callable that converts values that can not be encoded
1665
+ in to something that can be JSON encoded. Defaults to None.
1666
+ sort_keys (bool, optional): Sort dictionary keys. Defaults to False.
1667
+ """
1668
+ from pip._vendor.rich.json import JSON
1669
+
1670
+ if json is None:
1671
+ json_renderable = JSON.from_data(
1672
+ data,
1673
+ indent=indent,
1674
+ highlight=highlight,
1675
+ skip_keys=skip_keys,
1676
+ ensure_ascii=ensure_ascii,
1677
+ check_circular=check_circular,
1678
+ allow_nan=allow_nan,
1679
+ default=default,
1680
+ sort_keys=sort_keys,
1681
+ )
1682
+ else:
1683
+ if not isinstance(json, str):
1684
+ raise TypeError(
1685
+ f"json must be str. Did you mean print_json(data={json!r}) ?"
1686
+ )
1687
+ json_renderable = JSON(
1688
+ json,
1689
+ indent=indent,
1690
+ highlight=highlight,
1691
+ skip_keys=skip_keys,
1692
+ ensure_ascii=ensure_ascii,
1693
+ check_circular=check_circular,
1694
+ allow_nan=allow_nan,
1695
+ default=default,
1696
+ sort_keys=sort_keys,
1697
+ )
1698
+ self.print(json_renderable, soft_wrap=True)
1699
+
1700
+ def update_screen(
1701
+ self,
1702
+ renderable: RenderableType,
1703
+ *,
1704
+ region: Optional[Region] = None,
1705
+ options: Optional[ConsoleOptions] = None,
1706
+ ) -> None:
1707
+ """Update the screen at a given offset.
1708
+
1709
+ Args:
1710
+ renderable (RenderableType): A Rich renderable.
1711
+ region (Region, optional): Region of screen to update, or None for entire screen. Defaults to None.
1712
+ x (int, optional): x offset. Defaults to 0.
1713
+ y (int, optional): y offset. Defaults to 0.
1714
+
1715
+ Raises:
1716
+ errors.NoAltScreen: If the Console isn't in alt screen mode.
1717
+
1718
+ """
1719
+ if not self.is_alt_screen:
1720
+ raise errors.NoAltScreen("Alt screen must be enabled to call update_screen")
1721
+ render_options = options or self.options
1722
+ if region is None:
1723
+ x = y = 0
1724
+ render_options = render_options.update_dimensions(
1725
+ render_options.max_width, render_options.height or self.height
1726
+ )
1727
+ else:
1728
+ x, y, width, height = region
1729
+ render_options = render_options.update_dimensions(width, height)
1730
+
1731
+ lines = self.render_lines(renderable, options=render_options)
1732
+ self.update_screen_lines(lines, x, y)
1733
+
1734
+ def update_screen_lines(
1735
+ self, lines: List[List[Segment]], x: int = 0, y: int = 0
1736
+ ) -> None:
1737
+ """Update lines of the screen at a given offset.
1738
+
1739
+ Args:
1740
+ lines (List[List[Segment]]): Rendered lines (as produced by :meth:`~rich.Console.render_lines`).
1741
+ x (int, optional): x offset (column no). Defaults to 0.
1742
+ y (int, optional): y offset (column no). Defaults to 0.
1743
+
1744
+ Raises:
1745
+ errors.NoAltScreen: If the Console isn't in alt screen mode.
1746
+ """
1747
+ if not self.is_alt_screen:
1748
+ raise errors.NoAltScreen("Alt screen must be enabled to call update_screen")
1749
+ screen_update = ScreenUpdate(lines, x, y)
1750
+ segments = self.render(screen_update)
1751
+ self._buffer.extend(segments)
1752
+ self._check_buffer()
1753
+
1754
+ def print_exception(
1755
+ self,
1756
+ *,
1757
+ width: Optional[int] = 100,
1758
+ extra_lines: int = 3,
1759
+ theme: Optional[str] = None,
1760
+ word_wrap: bool = False,
1761
+ show_locals: bool = False,
1762
+ suppress: Iterable[Union[str, ModuleType]] = (),
1763
+ max_frames: int = 100,
1764
+ ) -> None:
1765
+ """Prints a rich render of the last exception and traceback.
1766
+
1767
+ Args:
1768
+ width (Optional[int], optional): Number of characters used to render code. Defaults to 88.
1769
+ extra_lines (int, optional): Additional lines of code to render. Defaults to 3.
1770
+ theme (str, optional): Override pygments theme used in traceback
1771
+ word_wrap (bool, optional): Enable word wrapping of long lines. Defaults to False.
1772
+ show_locals (bool, optional): Enable display of local variables. Defaults to False.
1773
+ suppress (Iterable[Union[str, ModuleType]]): Optional sequence of modules or paths to exclude from traceback.
1774
+ max_frames (int): Maximum number of frames to show in a traceback, 0 for no maximum. Defaults to 100.
1775
+ """
1776
+ from .traceback import Traceback
1777
+
1778
+ traceback = Traceback(
1779
+ width=width,
1780
+ extra_lines=extra_lines,
1781
+ theme=theme,
1782
+ word_wrap=word_wrap,
1783
+ show_locals=show_locals,
1784
+ suppress=suppress,
1785
+ max_frames=max_frames,
1786
+ )
1787
+ self.print(traceback)
1788
+
1789
+ @staticmethod
1790
+ def _caller_frame_info(
1791
+ offset: int,
1792
+ currentframe: Callable[[], Optional[FrameType]] = inspect.currentframe,
1793
+ ) -> Tuple[str, int, Dict[str, Any]]:
1794
+ """Get caller frame information.
1795
+
1796
+ Args:
1797
+ offset (int): the caller offset within the current frame stack.
1798
+ currentframe (Callable[[], Optional[FrameType]], optional): the callable to use to
1799
+ retrieve the current frame. Defaults to ``inspect.currentframe``.
1800
+
1801
+ Returns:
1802
+ Tuple[str, int, Dict[str, Any]]: A tuple containing the filename, the line number and
1803
+ the dictionary of local variables associated with the caller frame.
1804
+
1805
+ Raises:
1806
+ RuntimeError: If the stack offset is invalid.
1807
+ """
1808
+ # Ignore the frame of this local helper
1809
+ offset += 1
1810
+
1811
+ frame = currentframe()
1812
+ if frame is not None:
1813
+ # Use the faster currentframe where implemented
1814
+ while offset and frame:
1815
+ frame = frame.f_back
1816
+ offset -= 1
1817
+ assert frame is not None
1818
+ return frame.f_code.co_filename, frame.f_lineno, frame.f_locals
1819
+ else:
1820
+ # Fallback to the slower stack
1821
+ frame_info = inspect.stack()[offset]
1822
+ return frame_info.filename, frame_info.lineno, frame_info.frame.f_locals
1823
+
1824
+ def log(
1825
+ self,
1826
+ *objects: Any,
1827
+ sep: str = " ",
1828
+ end: str = "\n",
1829
+ style: Optional[Union[str, Style]] = None,
1830
+ justify: Optional[JustifyMethod] = None,
1831
+ emoji: Optional[bool] = None,
1832
+ markup: Optional[bool] = None,
1833
+ highlight: Optional[bool] = None,
1834
+ log_locals: bool = False,
1835
+ _stack_offset: int = 1,
1836
+ ) -> None:
1837
+ """Log rich content to the terminal.
1838
+
1839
+ Args:
1840
+ objects (positional args): Objects to log to the terminal.
1841
+ sep (str, optional): String to write between print data. Defaults to " ".
1842
+ end (str, optional): String to write at end of print data. Defaults to "\\\\n".
1843
+ style (Union[str, Style], optional): A style to apply to output. Defaults to None.
1844
+ justify (str, optional): One of "left", "right", "center", or "full". Defaults to ``None``.
1845
+ overflow (str, optional): Overflow method: "crop", "fold", or "ellipsis". Defaults to None.
1846
+ emoji (Optional[bool], optional): Enable emoji code, or ``None`` to use console default. Defaults to None.
1847
+ markup (Optional[bool], optional): Enable markup, or ``None`` to use console default. Defaults to None.
1848
+ highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use console default. Defaults to None.
1849
+ log_locals (bool, optional): Boolean to enable logging of locals where ``log()``
1850
+ was called. Defaults to False.
1851
+ _stack_offset (int, optional): Offset of caller from end of call stack. Defaults to 1.
1852
+ """
1853
+ if not objects:
1854
+ objects = (NewLine(),)
1855
+
1856
+ render_hooks = self._render_hooks[:]
1857
+
1858
+ with self:
1859
+ renderables = self._collect_renderables(
1860
+ objects,
1861
+ sep,
1862
+ end,
1863
+ justify=justify,
1864
+ emoji=emoji,
1865
+ markup=markup,
1866
+ highlight=highlight,
1867
+ )
1868
+ if style is not None:
1869
+ renderables = [Styled(renderable, style) for renderable in renderables]
1870
+
1871
+ filename, line_no, locals = self._caller_frame_info(_stack_offset)
1872
+ link_path = None if filename.startswith("<") else os.path.abspath(filename)
1873
+ path = filename.rpartition(os.sep)[-1]
1874
+ if log_locals:
1875
+ locals_map = {
1876
+ key: value
1877
+ for key, value in locals.items()
1878
+ if not key.startswith("__")
1879
+ }
1880
+ renderables.append(render_scope(locals_map, title="[i]locals"))
1881
+
1882
+ renderables = [
1883
+ self._log_render(
1884
+ self,
1885
+ renderables,
1886
+ log_time=self.get_datetime(),
1887
+ path=path,
1888
+ line_no=line_no,
1889
+ link_path=link_path,
1890
+ )
1891
+ ]
1892
+ for hook in render_hooks:
1893
+ renderables = hook.process_renderables(renderables)
1894
+ new_segments: List[Segment] = []
1895
+ extend = new_segments.extend
1896
+ render = self.render
1897
+ render_options = self.options
1898
+ for renderable in renderables:
1899
+ extend(render(renderable, render_options))
1900
+ buffer_extend = self._buffer.extend
1901
+ for line in Segment.split_and_crop_lines(
1902
+ new_segments, self.width, pad=False
1903
+ ):
1904
+ buffer_extend(line)
1905
+
1906
+ def _check_buffer(self) -> None:
1907
+ """Check if the buffer may be rendered."""
1908
+ if self.quiet:
1909
+ del self._buffer[:]
1910
+ return
1911
+ with self._lock:
1912
+ if self._buffer_index == 0:
1913
+ if self.is_jupyter: # pragma: no cover
1914
+ from .jupyter import display
1915
+
1916
+ display(self._buffer, self._render_buffer(self._buffer[:]))
1917
+ del self._buffer[:]
1918
+ else:
1919
+ text = self._render_buffer(self._buffer[:])
1920
+ del self._buffer[:]
1921
+ if text:
1922
+ try:
1923
+ if WINDOWS: # pragma: no cover
1924
+ # https://bugs.python.org/issue37871
1925
+ write = self.file.write
1926
+ for line in text.splitlines(True):
1927
+ write(line)
1928
+ else:
1929
+ self.file.write(text)
1930
+ self.file.flush()
1931
+ except UnicodeEncodeError as error:
1932
+ error.reason = f"{error.reason}\n*** You may need to add PYTHONIOENCODING=utf-8 to your environment ***"
1933
+ raise
1934
+
1935
+ def _render_buffer(self, buffer: Iterable[Segment]) -> str:
1936
+ """Render buffered output, and clear buffer."""
1937
+ output: List[str] = []
1938
+ append = output.append
1939
+ color_system = self._color_system
1940
+ legacy_windows = self.legacy_windows
1941
+ if self.record:
1942
+ with self._record_buffer_lock:
1943
+ self._record_buffer.extend(buffer)
1944
+ not_terminal = not self.is_terminal
1945
+ if self.no_color and color_system:
1946
+ buffer = Segment.remove_color(buffer)
1947
+ for text, style, control in buffer:
1948
+ if style:
1949
+ append(
1950
+ style.render(
1951
+ text,
1952
+ color_system=color_system,
1953
+ legacy_windows=legacy_windows,
1954
+ )
1955
+ )
1956
+ elif not (not_terminal and control):
1957
+ append(text)
1958
+
1959
+ rendered = "".join(output)
1960
+ return rendered
1961
+
1962
+ def input(
1963
+ self,
1964
+ prompt: TextType = "",
1965
+ *,
1966
+ markup: bool = True,
1967
+ emoji: bool = True,
1968
+ password: bool = False,
1969
+ stream: Optional[TextIO] = None,
1970
+ ) -> str:
1971
+ """Displays a prompt and waits for input from the user. The prompt may contain color / style.
1972
+
1973
+ It works in the same way as Python's builtin :func:`input` function and provides elaborate line editing and history features if Python's builtin :mod:`readline` module is previously loaded.
1974
+
1975
+ Args:
1976
+ prompt (Union[str, Text]): Text to render in the prompt.
1977
+ markup (bool, optional): Enable console markup (requires a str prompt). Defaults to True.
1978
+ emoji (bool, optional): Enable emoji (requires a str prompt). Defaults to True.
1979
+ password: (bool, optional): Hide typed text. Defaults to False.
1980
+ stream: (TextIO, optional): Optional file to read input from (rather than stdin). Defaults to None.
1981
+
1982
+ Returns:
1983
+ str: Text read from stdin.
1984
+ """
1985
+ prompt_str = ""
1986
+ if prompt:
1987
+ with self.capture() as capture:
1988
+ self.print(prompt, markup=markup, emoji=emoji, end="")
1989
+ prompt_str = capture.get()
1990
+ if self.legacy_windows:
1991
+ # Legacy windows doesn't like ANSI codes in getpass or input (colorama bug)?
1992
+ self.file.write(prompt_str)
1993
+ prompt_str = ""
1994
+ if password:
1995
+ result = getpass(prompt_str, stream=stream)
1996
+ else:
1997
+ if stream:
1998
+ self.file.write(prompt_str)
1999
+ result = stream.readline()
2000
+ else:
2001
+ result = input(prompt_str)
2002
+ return result
2003
+
2004
+ def export_text(self, *, clear: bool = True, styles: bool = False) -> str:
2005
+ """Generate text from console contents (requires record=True argument in constructor).
2006
+
2007
+ Args:
2008
+ clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``.
2009
+ styles (bool, optional): If ``True``, ansi escape codes will be included. ``False`` for plain text.
2010
+ Defaults to ``False``.
2011
+
2012
+ Returns:
2013
+ str: String containing console contents.
2014
+
2015
+ """
2016
+ assert (
2017
+ self.record
2018
+ ), "To export console contents set record=True in the constructor or instance"
2019
+
2020
+ with self._record_buffer_lock:
2021
+ if styles:
2022
+ text = "".join(
2023
+ (style.render(text) if style else text)
2024
+ for text, style, _ in self._record_buffer
2025
+ )
2026
+ else:
2027
+ text = "".join(
2028
+ segment.text
2029
+ for segment in self._record_buffer
2030
+ if not segment.control
2031
+ )
2032
+ if clear:
2033
+ del self._record_buffer[:]
2034
+ return text
2035
+
2036
+ def save_text(self, path: str, *, clear: bool = True, styles: bool = False) -> None:
2037
+ """Generate text from console and save to a given location (requires record=True argument in constructor).
2038
+
2039
+ Args:
2040
+ path (str): Path to write text files.
2041
+ clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``.
2042
+ styles (bool, optional): If ``True``, ansi style codes will be included. ``False`` for plain text.
2043
+ Defaults to ``False``.
2044
+
2045
+ """
2046
+ text = self.export_text(clear=clear, styles=styles)
2047
+ with open(path, "wt", encoding="utf-8") as write_file:
2048
+ write_file.write(text)
2049
+
2050
+ def export_html(
2051
+ self,
2052
+ *,
2053
+ theme: Optional[TerminalTheme] = None,
2054
+ clear: bool = True,
2055
+ code_format: Optional[str] = None,
2056
+ inline_styles: bool = False,
2057
+ ) -> str:
2058
+ """Generate HTML from console contents (requires record=True argument in constructor).
2059
+
2060
+ Args:
2061
+ theme (TerminalTheme, optional): TerminalTheme object containing console colors.
2062
+ clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``.
2063
+ code_format (str, optional): Format string to render HTML, should contain {foreground}
2064
+ {background} and {code}.
2065
+ inline_styles (bool, optional): If ``True`` styles will be inlined in to spans, which makes files
2066
+ larger but easier to cut and paste markup. If ``False``, styles will be embedded in a style tag.
2067
+ Defaults to False.
2068
+
2069
+ Returns:
2070
+ str: String containing console contents as HTML.
2071
+ """
2072
+ assert (
2073
+ self.record
2074
+ ), "To export console contents set record=True in the constructor or instance"
2075
+ fragments: List[str] = []
2076
+ append = fragments.append
2077
+ _theme = theme or DEFAULT_TERMINAL_THEME
2078
+ stylesheet = ""
2079
+
2080
+ render_code_format = CONSOLE_HTML_FORMAT if code_format is None else code_format
2081
+
2082
+ with self._record_buffer_lock:
2083
+ if inline_styles:
2084
+ for text, style, _ in Segment.filter_control(
2085
+ Segment.simplify(self._record_buffer)
2086
+ ):
2087
+ text = escape(text)
2088
+ if style:
2089
+ rule = style.get_html_style(_theme)
2090
+ if style.link:
2091
+ text = f'<a href="{style.link}">{text}</a>'
2092
+ text = f'<span style="{rule}">{text}</span>' if rule else text
2093
+ append(text)
2094
+ else:
2095
+ styles: Dict[str, int] = {}
2096
+ for text, style, _ in Segment.filter_control(
2097
+ Segment.simplify(self._record_buffer)
2098
+ ):
2099
+ text = escape(text)
2100
+ if style:
2101
+ rule = style.get_html_style(_theme)
2102
+ style_number = styles.setdefault(rule, len(styles) + 1)
2103
+ if style.link:
2104
+ text = f'<a class="r{style_number}" href="{style.link}">{text}</a>'
2105
+ else:
2106
+ text = f'<span class="r{style_number}">{text}</span>'
2107
+ append(text)
2108
+ stylesheet_rules: List[str] = []
2109
+ stylesheet_append = stylesheet_rules.append
2110
+ for style_rule, style_number in styles.items():
2111
+ if style_rule:
2112
+ stylesheet_append(f".r{style_number} {{{style_rule}}}")
2113
+ stylesheet = "\n".join(stylesheet_rules)
2114
+
2115
+ rendered_code = render_code_format.format(
2116
+ code="".join(fragments),
2117
+ stylesheet=stylesheet,
2118
+ foreground=_theme.foreground_color.hex,
2119
+ background=_theme.background_color.hex,
2120
+ )
2121
+ if clear:
2122
+ del self._record_buffer[:]
2123
+ return rendered_code
2124
+
2125
+ def save_html(
2126
+ self,
2127
+ path: str,
2128
+ *,
2129
+ theme: Optional[TerminalTheme] = None,
2130
+ clear: bool = True,
2131
+ code_format: str = CONSOLE_HTML_FORMAT,
2132
+ inline_styles: bool = False,
2133
+ ) -> None:
2134
+ """Generate HTML from console contents and write to a file (requires record=True argument in constructor).
2135
+
2136
+ Args:
2137
+ path (str): Path to write html file.
2138
+ theme (TerminalTheme, optional): TerminalTheme object containing console colors.
2139
+ clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``.
2140
+ code_format (str, optional): Format string to render HTML, should contain {foreground}
2141
+ {background} and {code}.
2142
+ inline_styles (bool, optional): If ``True`` styles will be inlined in to spans, which makes files
2143
+ larger but easier to cut and paste markup. If ``False``, styles will be embedded in a style tag.
2144
+ Defaults to False.
2145
+
2146
+ """
2147
+ html = self.export_html(
2148
+ theme=theme,
2149
+ clear=clear,
2150
+ code_format=code_format,
2151
+ inline_styles=inline_styles,
2152
+ )
2153
+ with open(path, "wt", encoding="utf-8") as write_file:
2154
+ write_file.write(html)
2155
+
2156
+
2157
+ if __name__ == "__main__": # pragma: no cover
2158
+ console = Console()
2159
+
2160
+ console.log(
2161
+ "JSONRPC [i]request[/i]",
2162
+ 5,
2163
+ 1.3,
2164
+ True,
2165
+ False,
2166
+ None,
2167
+ {
2168
+ "jsonrpc": "2.0",
2169
+ "method": "subtract",
2170
+ "params": {"minuend": 42, "subtrahend": 23},
2171
+ "id": 3,
2172
+ },
2173
+ )
2174
+
2175
+ console.log("Hello, World!", "{'a': 1}", repr(console))
2176
+
2177
+ console.print(
2178
+ {
2179
+ "name": None,
2180
+ "empty": [],
2181
+ "quiz": {
2182
+ "sport": {
2183
+ "answered": True,
2184
+ "q1": {
2185
+ "question": "Which one is correct team name in NBA?",
2186
+ "options": [
2187
+ "New York Bulls",
2188
+ "Los Angeles Kings",
2189
+ "Golden State Warriors",
2190
+ "Huston Rocket",
2191
+ ],
2192
+ "answer": "Huston Rocket",
2193
+ },
2194
+ },
2195
+ "maths": {
2196
+ "answered": False,
2197
+ "q1": {
2198
+ "question": "5 + 7 = ?",
2199
+ "options": [10, 11, 12, 13],
2200
+ "answer": 12,
2201
+ },
2202
+ "q2": {
2203
+ "question": "12 - 8 = ?",
2204
+ "options": [1, 2, 3, 4],
2205
+ "answer": 4,
2206
+ },
2207
+ },
2208
+ },
2209
+ }
2210
+ )
2211
+ console.log("foo")
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/constrain.py ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Optional, TYPE_CHECKING
2
+
3
+ from .jupyter import JupyterMixin
4
+ from .measure import Measurement
5
+
6
+ if TYPE_CHECKING:
7
+ from .console import Console, ConsoleOptions, RenderableType, RenderResult
8
+
9
+
10
+ class Constrain(JupyterMixin):
11
+ """Constrain the width of a renderable to a given number of characters.
12
+
13
+ Args:
14
+ renderable (RenderableType): A renderable object.
15
+ width (int, optional): The maximum width (in characters) to render. Defaults to 80.
16
+ """
17
+
18
+ def __init__(self, renderable: "RenderableType", width: Optional[int] = 80) -> None:
19
+ self.renderable = renderable
20
+ self.width = width
21
+
22
+ def __rich_console__(
23
+ self, console: "Console", options: "ConsoleOptions"
24
+ ) -> "RenderResult":
25
+ if self.width is None:
26
+ yield self.renderable
27
+ else:
28
+ child_options = options.update_width(min(self.width, options.max_width))
29
+ yield from console.render(self.renderable, child_options)
30
+
31
+ def __rich_measure__(
32
+ self, console: "Console", options: "ConsoleOptions"
33
+ ) -> "Measurement":
34
+ if self.width is not None:
35
+ options = options.update_width(self.width)
36
+ measurement = Measurement.get(console, options, self.renderable)
37
+ return measurement
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/containers.py ADDED
@@ -0,0 +1,167 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from itertools import zip_longest
2
+ from typing import (
3
+ Iterator,
4
+ Iterable,
5
+ List,
6
+ Optional,
7
+ Union,
8
+ overload,
9
+ TypeVar,
10
+ TYPE_CHECKING,
11
+ )
12
+
13
+ if TYPE_CHECKING:
14
+ from .console import (
15
+ Console,
16
+ ConsoleOptions,
17
+ JustifyMethod,
18
+ OverflowMethod,
19
+ RenderResult,
20
+ RenderableType,
21
+ )
22
+ from .text import Text
23
+
24
+ from .cells import cell_len
25
+ from .measure import Measurement
26
+
27
+ T = TypeVar("T")
28
+
29
+
30
+ class Renderables:
31
+ """A list subclass which renders its contents to the console."""
32
+
33
+ def __init__(
34
+ self, renderables: Optional[Iterable["RenderableType"]] = None
35
+ ) -> None:
36
+ self._renderables: List["RenderableType"] = (
37
+ list(renderables) if renderables is not None else []
38
+ )
39
+
40
+ def __rich_console__(
41
+ self, console: "Console", options: "ConsoleOptions"
42
+ ) -> "RenderResult":
43
+ """Console render method to insert line-breaks."""
44
+ yield from self._renderables
45
+
46
+ def __rich_measure__(
47
+ self, console: "Console", options: "ConsoleOptions"
48
+ ) -> "Measurement":
49
+ dimensions = [
50
+ Measurement.get(console, options, renderable)
51
+ for renderable in self._renderables
52
+ ]
53
+ if not dimensions:
54
+ return Measurement(1, 1)
55
+ _min = max(dimension.minimum for dimension in dimensions)
56
+ _max = max(dimension.maximum for dimension in dimensions)
57
+ return Measurement(_min, _max)
58
+
59
+ def append(self, renderable: "RenderableType") -> None:
60
+ self._renderables.append(renderable)
61
+
62
+ def __iter__(self) -> Iterable["RenderableType"]:
63
+ return iter(self._renderables)
64
+
65
+
66
+ class Lines:
67
+ """A list subclass which can render to the console."""
68
+
69
+ def __init__(self, lines: Iterable["Text"] = ()) -> None:
70
+ self._lines: List["Text"] = list(lines)
71
+
72
+ def __repr__(self) -> str:
73
+ return f"Lines({self._lines!r})"
74
+
75
+ def __iter__(self) -> Iterator["Text"]:
76
+ return iter(self._lines)
77
+
78
+ @overload
79
+ def __getitem__(self, index: int) -> "Text":
80
+ ...
81
+
82
+ @overload
83
+ def __getitem__(self, index: slice) -> List["Text"]:
84
+ ...
85
+
86
+ def __getitem__(self, index: Union[slice, int]) -> Union["Text", List["Text"]]:
87
+ return self._lines[index]
88
+
89
+ def __setitem__(self, index: int, value: "Text") -> "Lines":
90
+ self._lines[index] = value
91
+ return self
92
+
93
+ def __len__(self) -> int:
94
+ return self._lines.__len__()
95
+
96
+ def __rich_console__(
97
+ self, console: "Console", options: "ConsoleOptions"
98
+ ) -> "RenderResult":
99
+ """Console render method to insert line-breaks."""
100
+ yield from self._lines
101
+
102
+ def append(self, line: "Text") -> None:
103
+ self._lines.append(line)
104
+
105
+ def extend(self, lines: Iterable["Text"]) -> None:
106
+ self._lines.extend(lines)
107
+
108
+ def pop(self, index: int = -1) -> "Text":
109
+ return self._lines.pop(index)
110
+
111
+ def justify(
112
+ self,
113
+ console: "Console",
114
+ width: int,
115
+ justify: "JustifyMethod" = "left",
116
+ overflow: "OverflowMethod" = "fold",
117
+ ) -> None:
118
+ """Justify and overflow text to a given width.
119
+
120
+ Args:
121
+ console (Console): Console instance.
122
+ width (int): Number of characters per line.
123
+ justify (str, optional): Default justify method for text: "left", "center", "full" or "right". Defaults to "left".
124
+ overflow (str, optional): Default overflow for text: "crop", "fold", or "ellipsis". Defaults to "fold".
125
+
126
+ """
127
+ from .text import Text
128
+
129
+ if justify == "left":
130
+ for line in self._lines:
131
+ line.truncate(width, overflow=overflow, pad=True)
132
+ elif justify == "center":
133
+ for line in self._lines:
134
+ line.rstrip()
135
+ line.truncate(width, overflow=overflow)
136
+ line.pad_left((width - cell_len(line.plain)) // 2)
137
+ line.pad_right(width - cell_len(line.plain))
138
+ elif justify == "right":
139
+ for line in self._lines:
140
+ line.rstrip()
141
+ line.truncate(width, overflow=overflow)
142
+ line.pad_left(width - cell_len(line.plain))
143
+ elif justify == "full":
144
+ for line_index, line in enumerate(self._lines):
145
+ if line_index == len(self._lines) - 1:
146
+ break
147
+ words = line.split(" ")
148
+ words_size = sum(cell_len(word.plain) for word in words)
149
+ num_spaces = len(words) - 1
150
+ spaces = [1 for _ in range(num_spaces)]
151
+ index = 0
152
+ if spaces:
153
+ while words_size + num_spaces < width:
154
+ spaces[len(spaces) - index - 1] += 1
155
+ num_spaces += 1
156
+ index = (index + 1) % len(spaces)
157
+ tokens: List[Text] = []
158
+ for index, (word, next_word) in enumerate(
159
+ zip_longest(words, words[1:])
160
+ ):
161
+ tokens.append(word)
162
+ if index < len(spaces):
163
+ style = word.get_style_at_offset(console, -1)
164
+ next_style = next_word.get_style_at_offset(console, 0)
165
+ space_style = style if style == next_style else line.style
166
+ tokens.append(Text(" " * spaces[index], style=space_style))
167
+ self[line_index] = Text("").join(tokens)
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/control.py ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Any, Callable, Dict, Iterable, List, TYPE_CHECKING, Union
2
+
3
+ from .segment import ControlCode, ControlType, Segment
4
+
5
+ if TYPE_CHECKING:
6
+ from .console import Console, ConsoleOptions, RenderResult
7
+
8
+ STRIP_CONTROL_CODES = [
9
+ 8, # Backspace
10
+ 11, # Vertical tab
11
+ 12, # Form feed
12
+ 13, # Carriage return
13
+ ]
14
+ _CONTROL_TRANSLATE = {_codepoint: None for _codepoint in STRIP_CONTROL_CODES}
15
+
16
+
17
+ CONTROL_CODES_FORMAT: Dict[int, Callable[..., str]] = {
18
+ ControlType.BELL: lambda: "\x07",
19
+ ControlType.CARRIAGE_RETURN: lambda: "\r",
20
+ ControlType.HOME: lambda: "\x1b[H",
21
+ ControlType.CLEAR: lambda: "\x1b[2J",
22
+ ControlType.ENABLE_ALT_SCREEN: lambda: "\x1b[?1049h",
23
+ ControlType.DISABLE_ALT_SCREEN: lambda: "\x1b[?1049l",
24
+ ControlType.SHOW_CURSOR: lambda: "\x1b[?25h",
25
+ ControlType.HIDE_CURSOR: lambda: "\x1b[?25l",
26
+ ControlType.CURSOR_UP: lambda param: f"\x1b[{param}A",
27
+ ControlType.CURSOR_DOWN: lambda param: f"\x1b[{param}B",
28
+ ControlType.CURSOR_FORWARD: lambda param: f"\x1b[{param}C",
29
+ ControlType.CURSOR_BACKWARD: lambda param: f"\x1b[{param}D",
30
+ ControlType.CURSOR_MOVE_TO_COLUMN: lambda param: f"\x1b[{param+1}G",
31
+ ControlType.ERASE_IN_LINE: lambda param: f"\x1b[{param}K",
32
+ ControlType.CURSOR_MOVE_TO: lambda x, y: f"\x1b[{y+1};{x+1}H",
33
+ }
34
+
35
+
36
+ class Control:
37
+ """A renderable that inserts a control code (non printable but may move cursor).
38
+
39
+ Args:
40
+ *codes (str): Positional arguments are either a :class:`~rich.segment.ControlType` enum or a
41
+ tuple of ControlType and an integer parameter
42
+ """
43
+
44
+ __slots__ = ["segment"]
45
+
46
+ def __init__(self, *codes: Union[ControlType, ControlCode]) -> None:
47
+ control_codes: List[ControlCode] = [
48
+ (code,) if isinstance(code, ControlType) else code for code in codes
49
+ ]
50
+ _format_map = CONTROL_CODES_FORMAT
51
+ rendered_codes = "".join(
52
+ _format_map[code](*parameters) for code, *parameters in control_codes
53
+ )
54
+ self.segment = Segment(rendered_codes, None, control_codes)
55
+
56
+ @classmethod
57
+ def bell(cls) -> "Control":
58
+ """Ring the 'bell'."""
59
+ return cls(ControlType.BELL)
60
+
61
+ @classmethod
62
+ def home(cls) -> "Control":
63
+ """Move cursor to 'home' position."""
64
+ return cls(ControlType.HOME)
65
+
66
+ @classmethod
67
+ def move(cls, x: int = 0, y: int = 0) -> "Control":
68
+ """Move cursor relative to current position.
69
+
70
+ Args:
71
+ x (int): X offset.
72
+ y (int): Y offset.
73
+
74
+ Returns:
75
+ ~Control: Control object.
76
+
77
+ """
78
+
79
+ def get_codes() -> Iterable[ControlCode]:
80
+ control = ControlType
81
+ if x:
82
+ yield (
83
+ control.CURSOR_FORWARD if x > 0 else control.CURSOR_BACKWARD,
84
+ abs(x),
85
+ )
86
+ if y:
87
+ yield (
88
+ control.CURSOR_DOWN if y > 0 else control.CURSOR_UP,
89
+ abs(y),
90
+ )
91
+
92
+ control = cls(*get_codes())
93
+ return control
94
+
95
+ @classmethod
96
+ def move_to_column(cls, x: int, y: int = 0) -> "Control":
97
+ """Move to the given column, optionally add offset to row.
98
+
99
+ Returns:
100
+ x (int): absolute x (column)
101
+ y (int): optional y offset (row)
102
+
103
+ Returns:
104
+ ~Control: Control object.
105
+ """
106
+
107
+ return (
108
+ cls(
109
+ (ControlType.CURSOR_MOVE_TO_COLUMN, x),
110
+ (
111
+ ControlType.CURSOR_DOWN if y > 0 else ControlType.CURSOR_UP,
112
+ abs(y),
113
+ ),
114
+ )
115
+ if y
116
+ else cls((ControlType.CURSOR_MOVE_TO_COLUMN, x))
117
+ )
118
+
119
+ @classmethod
120
+ def move_to(cls, x: int, y: int) -> "Control":
121
+ """Move cursor to absolute position.
122
+
123
+ Args:
124
+ x (int): x offset (column)
125
+ y (int): y offset (row)
126
+
127
+ Returns:
128
+ ~Control: Control object.
129
+ """
130
+ return cls((ControlType.CURSOR_MOVE_TO, x, y))
131
+
132
+ @classmethod
133
+ def clear(cls) -> "Control":
134
+ """Clear the screen."""
135
+ return cls(ControlType.CLEAR)
136
+
137
+ @classmethod
138
+ def show_cursor(cls, show: bool) -> "Control":
139
+ """Show or hide the cursor."""
140
+ return cls(ControlType.SHOW_CURSOR if show else ControlType.HIDE_CURSOR)
141
+
142
+ @classmethod
143
+ def alt_screen(cls, enable: bool) -> "Control":
144
+ """Enable or disable alt screen."""
145
+ if enable:
146
+ return cls(ControlType.ENABLE_ALT_SCREEN, ControlType.HOME)
147
+ else:
148
+ return cls(ControlType.DISABLE_ALT_SCREEN)
149
+
150
+ def __str__(self) -> str:
151
+ return self.segment.text
152
+
153
+ def __rich_console__(
154
+ self, console: "Console", options: "ConsoleOptions"
155
+ ) -> "RenderResult":
156
+ if self.segment.text:
157
+ yield self.segment
158
+
159
+
160
+ def strip_control_codes(
161
+ text: str, _translate_table: Dict[int, None] = _CONTROL_TRANSLATE
162
+ ) -> str:
163
+ """Remove control codes from text.
164
+
165
+ Args:
166
+ text (str): A string possibly contain control codes.
167
+
168
+ Returns:
169
+ str: String with control codes removed.
170
+ """
171
+ return text.translate(_translate_table)
172
+
173
+
174
+ if __name__ == "__main__": # pragma: no cover
175
+ print(strip_control_codes("hello\rWorld"))
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/default_styles.py ADDED
@@ -0,0 +1,183 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Dict
2
+
3
+ from .style import Style
4
+
5
+
6
+ DEFAULT_STYLES: Dict[str, Style] = {
7
+ "none": Style.null(),
8
+ "reset": Style(
9
+ color="default",
10
+ bgcolor="default",
11
+ dim=False,
12
+ bold=False,
13
+ italic=False,
14
+ underline=False,
15
+ blink=False,
16
+ blink2=False,
17
+ reverse=False,
18
+ conceal=False,
19
+ strike=False,
20
+ ),
21
+ "dim": Style(dim=True),
22
+ "bright": Style(dim=False),
23
+ "bold": Style(bold=True),
24
+ "strong": Style(bold=True),
25
+ "code": Style(reverse=True, bold=True),
26
+ "italic": Style(italic=True),
27
+ "emphasize": Style(italic=True),
28
+ "underline": Style(underline=True),
29
+ "blink": Style(blink=True),
30
+ "blink2": Style(blink2=True),
31
+ "reverse": Style(reverse=True),
32
+ "strike": Style(strike=True),
33
+ "black": Style(color="black"),
34
+ "red": Style(color="red"),
35
+ "green": Style(color="green"),
36
+ "yellow": Style(color="yellow"),
37
+ "magenta": Style(color="magenta"),
38
+ "cyan": Style(color="cyan"),
39
+ "white": Style(color="white"),
40
+ "inspect.attr": Style(color="yellow", italic=True),
41
+ "inspect.attr.dunder": Style(color="yellow", italic=True, dim=True),
42
+ "inspect.callable": Style(bold=True, color="red"),
43
+ "inspect.def": Style(italic=True, color="bright_cyan"),
44
+ "inspect.error": Style(bold=True, color="red"),
45
+ "inspect.equals": Style(),
46
+ "inspect.help": Style(color="cyan"),
47
+ "inspect.doc": Style(dim=True),
48
+ "inspect.value.border": Style(color="green"),
49
+ "live.ellipsis": Style(bold=True, color="red"),
50
+ "layout.tree.row": Style(dim=False, color="red"),
51
+ "layout.tree.column": Style(dim=False, color="blue"),
52
+ "logging.keyword": Style(bold=True, color="yellow"),
53
+ "logging.level.notset": Style(dim=True),
54
+ "logging.level.debug": Style(color="green"),
55
+ "logging.level.info": Style(color="blue"),
56
+ "logging.level.warning": Style(color="red"),
57
+ "logging.level.error": Style(color="red", bold=True),
58
+ "logging.level.critical": Style(color="red", bold=True, reverse=True),
59
+ "log.level": Style.null(),
60
+ "log.time": Style(color="cyan", dim=True),
61
+ "log.message": Style.null(),
62
+ "log.path": Style(dim=True),
63
+ "repr.ellipsis": Style(color="yellow"),
64
+ "repr.indent": Style(color="green", dim=True),
65
+ "repr.error": Style(color="red", bold=True),
66
+ "repr.str": Style(color="green", italic=False, bold=False),
67
+ "repr.brace": Style(bold=True),
68
+ "repr.comma": Style(bold=True),
69
+ "repr.ipv4": Style(bold=True, color="bright_green"),
70
+ "repr.ipv6": Style(bold=True, color="bright_green"),
71
+ "repr.eui48": Style(bold=True, color="bright_green"),
72
+ "repr.eui64": Style(bold=True, color="bright_green"),
73
+ "repr.tag_start": Style(bold=True),
74
+ "repr.tag_name": Style(color="bright_magenta", bold=True),
75
+ "repr.tag_contents": Style(color="default"),
76
+ "repr.tag_end": Style(bold=True),
77
+ "repr.attrib_name": Style(color="yellow", italic=False),
78
+ "repr.attrib_equal": Style(bold=True),
79
+ "repr.attrib_value": Style(color="magenta", italic=False),
80
+ "repr.number": Style(color="cyan", bold=True, italic=False),
81
+ "repr.bool_true": Style(color="bright_green", italic=True),
82
+ "repr.bool_false": Style(color="bright_red", italic=True),
83
+ "repr.none": Style(color="magenta", italic=True),
84
+ "repr.url": Style(underline=True, color="bright_blue", italic=False, bold=False),
85
+ "repr.uuid": Style(color="bright_yellow", bold=False),
86
+ "repr.call": Style(color="magenta", bold=True),
87
+ "repr.path": Style(color="magenta"),
88
+ "repr.filename": Style(color="bright_magenta"),
89
+ "rule.line": Style(color="bright_green"),
90
+ "rule.text": Style.null(),
91
+ "json.brace": Style(bold=True),
92
+ "json.bool_true": Style(color="bright_green", italic=True),
93
+ "json.bool_false": Style(color="bright_red", italic=True),
94
+ "json.null": Style(color="magenta", italic=True),
95
+ "json.number": Style(color="cyan", bold=True, italic=False),
96
+ "json.str": Style(color="green", italic=False, bold=False),
97
+ "json.key": Style(color="blue", bold=True),
98
+ "prompt": Style.null(),
99
+ "prompt.choices": Style(color="magenta", bold=True),
100
+ "prompt.default": Style(color="cyan", bold=True),
101
+ "prompt.invalid": Style(color="red"),
102
+ "prompt.invalid.choice": Style(color="red"),
103
+ "pretty": Style.null(),
104
+ "scope.border": Style(color="blue"),
105
+ "scope.key": Style(color="yellow", italic=True),
106
+ "scope.key.special": Style(color="yellow", italic=True, dim=True),
107
+ "scope.equals": Style(color="red"),
108
+ "table.header": Style(bold=True),
109
+ "table.footer": Style(bold=True),
110
+ "table.cell": Style.null(),
111
+ "table.title": Style(italic=True),
112
+ "table.caption": Style(italic=True, dim=True),
113
+ "traceback.error": Style(color="red", italic=True),
114
+ "traceback.border.syntax_error": Style(color="bright_red"),
115
+ "traceback.border": Style(color="red"),
116
+ "traceback.text": Style.null(),
117
+ "traceback.title": Style(color="red", bold=True),
118
+ "traceback.exc_type": Style(color="bright_red", bold=True),
119
+ "traceback.exc_value": Style.null(),
120
+ "traceback.offset": Style(color="bright_red", bold=True),
121
+ "bar.back": Style(color="grey23"),
122
+ "bar.complete": Style(color="rgb(249,38,114)"),
123
+ "bar.finished": Style(color="rgb(114,156,31)"),
124
+ "bar.pulse": Style(color="rgb(249,38,114)"),
125
+ "progress.description": Style.null(),
126
+ "progress.filesize": Style(color="green"),
127
+ "progress.filesize.total": Style(color="green"),
128
+ "progress.download": Style(color="green"),
129
+ "progress.elapsed": Style(color="yellow"),
130
+ "progress.percentage": Style(color="magenta"),
131
+ "progress.remaining": Style(color="cyan"),
132
+ "progress.data.speed": Style(color="red"),
133
+ "progress.spinner": Style(color="green"),
134
+ "status.spinner": Style(color="green"),
135
+ "tree": Style(),
136
+ "tree.line": Style(),
137
+ "markdown.paragraph": Style(),
138
+ "markdown.text": Style(),
139
+ "markdown.emph": Style(italic=True),
140
+ "markdown.strong": Style(bold=True),
141
+ "markdown.code": Style(bgcolor="black", color="bright_white"),
142
+ "markdown.code_block": Style(dim=True, color="cyan", bgcolor="black"),
143
+ "markdown.block_quote": Style(color="magenta"),
144
+ "markdown.list": Style(color="cyan"),
145
+ "markdown.item": Style(),
146
+ "markdown.item.bullet": Style(color="yellow", bold=True),
147
+ "markdown.item.number": Style(color="yellow", bold=True),
148
+ "markdown.hr": Style(color="yellow"),
149
+ "markdown.h1.border": Style(),
150
+ "markdown.h1": Style(bold=True),
151
+ "markdown.h2": Style(bold=True, underline=True),
152
+ "markdown.h3": Style(bold=True),
153
+ "markdown.h4": Style(bold=True, dim=True),
154
+ "markdown.h5": Style(underline=True),
155
+ "markdown.h6": Style(italic=True),
156
+ "markdown.h7": Style(italic=True, dim=True),
157
+ "markdown.link": Style(color="bright_blue"),
158
+ "markdown.link_url": Style(color="blue"),
159
+ }
160
+
161
+
162
+ if __name__ == "__main__": # pragma: no cover
163
+ import argparse
164
+ import io
165
+
166
+ from pip._vendor.rich.console import Console
167
+ from pip._vendor.rich.table import Table
168
+ from pip._vendor.rich.text import Text
169
+
170
+ parser = argparse.ArgumentParser()
171
+ parser.add_argument("--html", action="store_true", help="Export as HTML table")
172
+ args = parser.parse_args()
173
+ html: bool = args.html
174
+ console = Console(record=True, width=70, file=io.StringIO()) if html else Console()
175
+
176
+ table = Table("Name", "Styling")
177
+
178
+ for style_name, style in DEFAULT_STYLES.items():
179
+ table.add_row(Text(style_name, style=style), str(style))
180
+
181
+ console.print(table)
182
+ if html:
183
+ print(console.export_html(inline_styles=True))
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/diagnose.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ if __name__ == "__main__": # pragma: no cover
2
+ from pip._vendor.rich.console import Console
3
+ from pip._vendor.rich import inspect
4
+
5
+ console = Console()
6
+ inspect(console)
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/errors.py ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ class ConsoleError(Exception):
2
+ """An error in console operation."""
3
+
4
+
5
+ class StyleError(Exception):
6
+ """An error in styles."""
7
+
8
+
9
+ class StyleSyntaxError(ConsoleError):
10
+ """Style was badly formatted."""
11
+
12
+
13
+ class MissingStyle(StyleError):
14
+ """No such style."""
15
+
16
+
17
+ class StyleStackError(ConsoleError):
18
+ """Style stack is invalid."""
19
+
20
+
21
+ class NotRenderableError(ConsoleError):
22
+ """Object is not renderable."""
23
+
24
+
25
+ class MarkupError(ConsoleError):
26
+ """Markup was badly formatted."""
27
+
28
+
29
+ class LiveError(ConsoleError):
30
+ """Error related to Live display."""
31
+
32
+
33
+ class NoAltScreen(ConsoleError):
34
+ """Alt screen mode was required."""
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/file_proxy.py ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import io
2
+ from typing import List, Any, IO, TYPE_CHECKING
3
+
4
+ from .ansi import AnsiDecoder
5
+ from .text import Text
6
+
7
+ if TYPE_CHECKING:
8
+ from .console import Console
9
+
10
+
11
+ class FileProxy(io.TextIOBase):
12
+ """Wraps a file (e.g. sys.stdout) and redirects writes to a console."""
13
+
14
+ def __init__(self, console: "Console", file: IO[str]) -> None:
15
+ self.__console = console
16
+ self.__file = file
17
+ self.__buffer: List[str] = []
18
+ self.__ansi_decoder = AnsiDecoder()
19
+
20
+ @property
21
+ def rich_proxied_file(self) -> IO[str]:
22
+ """Get proxied file."""
23
+ return self.__file
24
+
25
+ def __getattr__(self, name: str) -> Any:
26
+ return getattr(self.__file, name)
27
+
28
+ def write(self, text: str) -> int:
29
+ if not isinstance(text, str):
30
+ raise TypeError(f"write() argument must be str, not {type(text).__name__}")
31
+ buffer = self.__buffer
32
+ lines: List[str] = []
33
+ while text:
34
+ line, new_line, text = text.partition("\n")
35
+ if new_line:
36
+ lines.append("".join(buffer) + line)
37
+ del buffer[:]
38
+ else:
39
+ buffer.append(line)
40
+ break
41
+ if lines:
42
+ console = self.__console
43
+ with console:
44
+ output = Text("\n").join(
45
+ self.__ansi_decoder.decode_line(line) for line in lines
46
+ )
47
+ console.print(output)
48
+ return len(text)
49
+
50
+ def flush(self) -> None:
51
+ buffer = self.__buffer
52
+ if buffer:
53
+ self.__console.print("".join(buffer))
54
+ del buffer[:]
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/filesize.py ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # coding: utf-8
2
+ """Functions for reporting filesizes. Borrowed from https://github.com/PyFilesystem/pyfilesystem2
3
+
4
+ The functions declared in this module should cover the different
5
+ usecases needed to generate a string representation of a file size
6
+ using several different units. Since there are many standards regarding
7
+ file size units, three different functions have been implemented.
8
+
9
+ See Also:
10
+ * `Wikipedia: Binary prefix <https://en.wikipedia.org/wiki/Binary_prefix>`_
11
+
12
+ """
13
+
14
+ __all__ = ["decimal"]
15
+
16
+ from typing import Iterable, List, Tuple, Optional
17
+
18
+
19
+ def _to_str(
20
+ size: int,
21
+ suffixes: Iterable[str],
22
+ base: int,
23
+ *,
24
+ precision: Optional[int] = 1,
25
+ separator: Optional[str] = " ",
26
+ ) -> str:
27
+ if size == 1:
28
+ return "1 byte"
29
+ elif size < base:
30
+ return "{:,} bytes".format(size)
31
+
32
+ for i, suffix in enumerate(suffixes, 2): # noqa: B007
33
+ unit = base ** i
34
+ if size < unit:
35
+ break
36
+ return "{:,.{precision}f}{separator}{}".format(
37
+ (base * size / unit),
38
+ suffix,
39
+ precision=precision,
40
+ separator=separator,
41
+ )
42
+
43
+
44
+ def pick_unit_and_suffix(size: int, suffixes: List[str], base: int) -> Tuple[int, str]:
45
+ """Pick a suffix and base for the given size."""
46
+ for i, suffix in enumerate(suffixes):
47
+ unit = base ** i
48
+ if size < unit * base:
49
+ break
50
+ return unit, suffix
51
+
52
+
53
+ def decimal(
54
+ size: int,
55
+ *,
56
+ precision: Optional[int] = 1,
57
+ separator: Optional[str] = " ",
58
+ ) -> str:
59
+ """Convert a filesize in to a string (powers of 1000, SI prefixes).
60
+
61
+ In this convention, ``1000 B = 1 kB``.
62
+
63
+ This is typically the format used to advertise the storage
64
+ capacity of USB flash drives and the like (*256 MB* meaning
65
+ actually a storage capacity of more than *256 000 000 B*),
66
+ or used by **Mac OS X** since v10.6 to report file sizes.
67
+
68
+ Arguments:
69
+ int (size): A file size.
70
+ int (precision): The number of decimal places to include (default = 1).
71
+ str (separator): The string to separate the value from the units (default = " ").
72
+
73
+ Returns:
74
+ `str`: A string containing a abbreviated file size and units.
75
+
76
+ Example:
77
+ >>> filesize.decimal(30000)
78
+ '30.0 kB'
79
+ >>> filesize.decimal(30000, precision=2, separator="")
80
+ '30.00kB'
81
+
82
+ """
83
+ return _to_str(
84
+ size,
85
+ ("kB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"),
86
+ 1000,
87
+ precision=precision,
88
+ separator=separator,
89
+ )
llmeval-env/lib/python3.10/site-packages/pip/_vendor/rich/highlighter.py ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from abc import ABC, abstractmethod
2
+ from typing import List, Union
3
+
4
+ from .text import Text
5
+
6
+
7
+ def _combine_regex(*regexes: str) -> str:
8
+ """Combine a number of regexes in to a single regex.
9
+
10
+ Returns:
11
+ str: New regex with all regexes ORed together.
12
+ """
13
+ return "|".join(regexes)
14
+
15
+
16
+ class Highlighter(ABC):
17
+ """Abstract base class for highlighters."""
18
+
19
+ def __call__(self, text: Union[str, Text]) -> Text:
20
+ """Highlight a str or Text instance.
21
+
22
+ Args:
23
+ text (Union[str, ~Text]): Text to highlight.
24
+
25
+ Raises:
26
+ TypeError: If not called with text or str.
27
+
28
+ Returns:
29
+ Text: A test instance with highlighting applied.
30
+ """
31
+ if isinstance(text, str):
32
+ highlight_text = Text(text)
33
+ elif isinstance(text, Text):
34
+ highlight_text = text.copy()
35
+ else:
36
+ raise TypeError(f"str or Text instance required, not {text!r}")
37
+ self.highlight(highlight_text)
38
+ return highlight_text
39
+
40
+ @abstractmethod
41
+ def highlight(self, text: Text) -> None:
42
+ """Apply highlighting in place to text.
43
+
44
+ Args:
45
+ text (~Text): A text object highlight.
46
+ """
47
+
48
+
49
+ class NullHighlighter(Highlighter):
50
+ """A highlighter object that doesn't highlight.
51
+
52
+ May be used to disable highlighting entirely.
53
+
54
+ """
55
+
56
+ def highlight(self, text: Text) -> None:
57
+ """Nothing to do"""
58
+
59
+
60
+ class RegexHighlighter(Highlighter):
61
+ """Applies highlighting from a list of regular expressions."""
62
+
63
+ highlights: List[str] = []
64
+ base_style: str = ""
65
+
66
+ def highlight(self, text: Text) -> None:
67
+ """Highlight :class:`rich.text.Text` using regular expressions.
68
+
69
+ Args:
70
+ text (~Text): Text to highlighted.
71
+
72
+ """
73
+
74
+ highlight_regex = text.highlight_regex
75
+ for re_highlight in self.highlights:
76
+ highlight_regex(re_highlight, style_prefix=self.base_style)
77
+
78
+
79
+ class ReprHighlighter(RegexHighlighter):
80
+ """Highlights the text typically produced from ``__repr__`` methods."""
81
+
82
+ base_style = "repr."
83
+ highlights = [
84
+ r"(?P<tag_start>\<)(?P<tag_name>[\w\-\.\:]*)(?P<tag_contents>[\w\W]*?)(?P<tag_end>\>)",
85
+ r"(?P<attrib_name>[\w_]{1,50})=(?P<attrib_value>\"?[\w_]+\"?)?",
86
+ r"(?P<brace>[\{\[\(\)\]\}])",
87
+ _combine_regex(
88
+ r"(?P<ipv4>[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3})",
89
+ r"(?P<ipv6>([A-Fa-f0-9]{1,4}::?){1,7}[A-Fa-f0-9]{1,4})",
90
+ r"(?P<eui64>(?:[0-9A-Fa-f]{1,2}-){7}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{1,2}:){7}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{4}\.){3}[0-9A-Fa-f]{4})",
91
+ r"(?P<eui48>(?:[0-9A-Fa-f]{1,2}-){5}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{1,2}:){5}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{4}\.){2}[0-9A-Fa-f]{4})",
92
+ r"(?P<call>[\w\.]*?)\(",
93
+ r"\b(?P<bool_true>True)\b|\b(?P<bool_false>False)\b|\b(?P<none>None)\b",
94
+ r"(?P<ellipsis>\.\.\.)",
95
+ r"(?P<number>(?<!\w)\-?[0-9]+\.?[0-9]*(e[\-\+]?\d+?)?\b|0x[0-9a-fA-F]*)",
96
+ r"(?P<path>\B(\/[\w\.\-\_\+]+)*\/)(?P<filename>[\w\.\-\_\+]*)?",
97
+ r"(?<![\\\w])(?P<str>b?\'\'\'.*?(?<!\\)\'\'\'|b?\'.*?(?<!\\)\'|b?\"\"\".*?(?<!\\)\"\"\"|b?\".*?(?<!\\)\")",
98
+ r"(?P<uuid>[a-fA-F0-9]{8}\-[a-fA-F0-9]{4}\-[a-fA-F0-9]{4}\-[a-fA-F0-9]{4}\-[a-fA-F0-9]{12})",
99
+ r"(?P<url>(file|https|http|ws|wss):\/\/[0-9a-zA-Z\$\-\_\+\!`\(\)\,\.\?\/\;\:\&\=\%\#]*)",
100
+ ),
101
+ ]
102
+
103
+
104
+ class JSONHighlighter(RegexHighlighter):
105
+ """Highlights JSON"""
106
+
107
+ base_style = "json."
108
+ highlights = [
109
+ _combine_regex(
110
+ r"(?P<brace>[\{\[\(\)\]\}])",
111
+ r"\b(?P<bool_true>true)\b|\b(?P<bool_false>false)\b|\b(?P<null>null)\b",
112
+ r"(?P<number>(?<!\w)\-?[0-9]+\.?[0-9]*(e[\-\+]?\d+?)?\b|0x[0-9a-fA-F]*)",
113
+ r"(?<![\\\w])(?P<str>b?\".*?(?<!\\)\")",
114
+ ),
115
+ r"(?<![\\\w])(?P<key>b?\".*?(?<!\\)\")\:",
116
+ ]
117
+
118
+
119
+ if __name__ == "__main__": # pragma: no cover
120
+ from .console import Console
121
+
122
+ console = Console()
123
+ console.print("[bold green]hello world![/bold green]")
124
+ console.print("'[bold green]hello world![/bold green]'")
125
+
126
+ console.print(" /foo")
127
+ console.print("/foo/")
128
+ console.print("/foo/bar")
129
+ console.print("foo/bar/baz")
130
+
131
+ console.print("/foo/bar/baz?foo=bar+egg&egg=baz")
132
+ console.print("/foo/bar/baz/")
133
+ console.print("/foo/bar/baz/egg")
134
+ console.print("/foo/bar/baz/egg.py")
135
+ console.print("/foo/bar/baz/egg.py word")
136
+ console.print(" /foo/bar/baz/egg.py word")
137
+ console.print("foo /foo/bar/baz/egg.py word")
138
+ console.print("foo /foo/bar/ba._++z/egg+.py word")
139
+ console.print("https://example.org?foo=bar#header")
140
+
141
+ console.print(1234567.34)
142
+ console.print(1 / 2)
143
+ console.print(-1 / 123123123123)
144
+
145
+ console.print(
146
+ "127.0.1.1 bar 192.168.1.4 2001:0db8:85a3:0000:0000:8a2e:0370:7334 foo"
147
+ )