mirror of
https://github.com/httpie/cli.git
synced 2024-11-29 03:03:44 +01:00
f7c1bb269e
* Refactor palette * Modifiers / change static strings to colors * Colors... * Error-based tests * Styling linting Co-authored-by: Jakub Roztocil <jakub@roztocil.co>
33 lines
874 B
Python
33 lines
874 B
Python
import os
|
|
|
|
from typing import Iterator
|
|
from contextlib import contextmanager
|
|
|
|
from rich.console import Console, RenderableType
|
|
from rich.highlighter import Highlighter
|
|
|
|
|
|
def render_as_string(renderable: RenderableType) -> str:
|
|
"""Render any `rich` object in a fake console and
|
|
return a *style-less* version of it as a string."""
|
|
|
|
with open(os.devnull, 'w') as null_stream:
|
|
fake_console = Console(file=null_stream, record=True)
|
|
fake_console.print(renderable)
|
|
return fake_console.export_text()
|
|
|
|
|
|
@contextmanager
|
|
def enable_highlighter(
|
|
console: Console,
|
|
highlighter: Highlighter,
|
|
) -> Iterator[Console]:
|
|
"""Enable a higlighter temporarily."""
|
|
|
|
original_highlighter = console.highlighter
|
|
try:
|
|
console.highlighter = highlighter
|
|
yield console
|
|
finally:
|
|
console.highlighter = original_highlighter
|