termui.py 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877
  1. from __future__ import annotations
  2. import collections.abc as cabc
  3. import inspect
  4. import io
  5. import itertools
  6. import sys
  7. import typing as t
  8. from contextlib import AbstractContextManager
  9. from gettext import gettext as _
  10. from ._compat import isatty
  11. from ._compat import strip_ansi
  12. from .exceptions import Abort
  13. from .exceptions import UsageError
  14. from .globals import resolve_color_default
  15. from .types import Choice
  16. from .types import convert_type
  17. from .types import ParamType
  18. from .utils import echo
  19. from .utils import LazyFile
  20. if t.TYPE_CHECKING:
  21. from ._termui_impl import ProgressBar
  22. V = t.TypeVar("V")
  23. # The prompt functions to use. The doc tools currently override these
  24. # functions to customize how they work.
  25. visible_prompt_func: t.Callable[[str], str] = input
  26. _ansi_colors = {
  27. "black": 30,
  28. "red": 31,
  29. "green": 32,
  30. "yellow": 33,
  31. "blue": 34,
  32. "magenta": 35,
  33. "cyan": 36,
  34. "white": 37,
  35. "reset": 39,
  36. "bright_black": 90,
  37. "bright_red": 91,
  38. "bright_green": 92,
  39. "bright_yellow": 93,
  40. "bright_blue": 94,
  41. "bright_magenta": 95,
  42. "bright_cyan": 96,
  43. "bright_white": 97,
  44. }
  45. _ansi_reset_all = "\033[0m"
  46. def hidden_prompt_func(prompt: str) -> str:
  47. import getpass
  48. return getpass.getpass(prompt)
  49. def _build_prompt(
  50. text: str,
  51. suffix: str,
  52. show_default: bool = False,
  53. default: t.Any | None = None,
  54. show_choices: bool = True,
  55. type: ParamType | None = None,
  56. ) -> str:
  57. prompt = text
  58. if type is not None and show_choices and isinstance(type, Choice):
  59. prompt += f" ({', '.join(map(str, type.choices))})"
  60. if default is not None and show_default:
  61. prompt = f"{prompt} [{_format_default(default)}]"
  62. return f"{prompt}{suffix}"
  63. def _format_default(default: t.Any) -> t.Any:
  64. if isinstance(default, (io.IOBase, LazyFile)) and hasattr(default, "name"):
  65. return default.name
  66. return default
  67. def prompt(
  68. text: str,
  69. default: t.Any | None = None,
  70. hide_input: bool = False,
  71. confirmation_prompt: bool | str = False,
  72. type: ParamType | t.Any | None = None,
  73. value_proc: t.Callable[[str], t.Any] | None = None,
  74. prompt_suffix: str = ": ",
  75. show_default: bool = True,
  76. err: bool = False,
  77. show_choices: bool = True,
  78. ) -> t.Any:
  79. """Prompts a user for input. This is a convenience function that can
  80. be used to prompt a user for input later.
  81. If the user aborts the input by sending an interrupt signal, this
  82. function will catch it and raise a :exc:`Abort` exception.
  83. :param text: the text to show for the prompt.
  84. :param default: the default value to use if no input happens. If this
  85. is not given it will prompt until it's aborted.
  86. :param hide_input: if this is set to true then the input value will
  87. be hidden.
  88. :param confirmation_prompt: Prompt a second time to confirm the
  89. value. Can be set to a string instead of ``True`` to customize
  90. the message.
  91. :param type: the type to use to check the value against.
  92. :param value_proc: if this parameter is provided it's a function that
  93. is invoked instead of the type conversion to
  94. convert a value.
  95. :param prompt_suffix: a suffix that should be added to the prompt.
  96. :param show_default: shows or hides the default value in the prompt.
  97. :param err: if set to true the file defaults to ``stderr`` instead of
  98. ``stdout``, the same as with echo.
  99. :param show_choices: Show or hide choices if the passed type is a Choice.
  100. For example if type is a Choice of either day or week,
  101. show_choices is true and text is "Group by" then the
  102. prompt will be "Group by (day, week): ".
  103. .. versionadded:: 8.0
  104. ``confirmation_prompt`` can be a custom string.
  105. .. versionadded:: 7.0
  106. Added the ``show_choices`` parameter.
  107. .. versionadded:: 6.0
  108. Added unicode support for cmd.exe on Windows.
  109. .. versionadded:: 4.0
  110. Added the `err` parameter.
  111. """
  112. def prompt_func(text: str) -> str:
  113. f = hidden_prompt_func if hide_input else visible_prompt_func
  114. try:
  115. # Write the prompt separately so that we get nice
  116. # coloring through colorama on Windows
  117. echo(text.rstrip(" "), nl=False, err=err)
  118. # Echo a space to stdout to work around an issue where
  119. # readline causes backspace to clear the whole line.
  120. return f(" ")
  121. except (KeyboardInterrupt, EOFError):
  122. # getpass doesn't print a newline if the user aborts input with ^C.
  123. # Allegedly this behavior is inherited from getpass(3).
  124. # A doc bug has been filed at https://bugs.python.org/issue24711
  125. if hide_input:
  126. echo(None, err=err)
  127. raise Abort() from None
  128. if value_proc is None:
  129. value_proc = convert_type(type, default)
  130. prompt = _build_prompt(
  131. text, prompt_suffix, show_default, default, show_choices, type
  132. )
  133. if confirmation_prompt:
  134. if confirmation_prompt is True:
  135. confirmation_prompt = _("Repeat for confirmation")
  136. confirmation_prompt = _build_prompt(confirmation_prompt, prompt_suffix)
  137. while True:
  138. while True:
  139. value = prompt_func(prompt)
  140. if value:
  141. break
  142. elif default is not None:
  143. value = default
  144. break
  145. try:
  146. result = value_proc(value)
  147. except UsageError as e:
  148. if hide_input:
  149. echo(_("Error: The value you entered was invalid."), err=err)
  150. else:
  151. echo(_("Error: {e.message}").format(e=e), err=err)
  152. continue
  153. if not confirmation_prompt:
  154. return result
  155. while True:
  156. value2 = prompt_func(confirmation_prompt)
  157. is_empty = not value and not value2
  158. if value2 or is_empty:
  159. break
  160. if value == value2:
  161. return result
  162. echo(_("Error: The two entered values do not match."), err=err)
  163. def confirm(
  164. text: str,
  165. default: bool | None = False,
  166. abort: bool = False,
  167. prompt_suffix: str = ": ",
  168. show_default: bool = True,
  169. err: bool = False,
  170. ) -> bool:
  171. """Prompts for confirmation (yes/no question).
  172. If the user aborts the input by sending a interrupt signal this
  173. function will catch it and raise a :exc:`Abort` exception.
  174. :param text: the question to ask.
  175. :param default: The default value to use when no input is given. If
  176. ``None``, repeat until input is given.
  177. :param abort: if this is set to `True` a negative answer aborts the
  178. exception by raising :exc:`Abort`.
  179. :param prompt_suffix: a suffix that should be added to the prompt.
  180. :param show_default: shows or hides the default value in the prompt.
  181. :param err: if set to true the file defaults to ``stderr`` instead of
  182. ``stdout``, the same as with echo.
  183. .. versionchanged:: 8.0
  184. Repeat until input is given if ``default`` is ``None``.
  185. .. versionadded:: 4.0
  186. Added the ``err`` parameter.
  187. """
  188. prompt = _build_prompt(
  189. text,
  190. prompt_suffix,
  191. show_default,
  192. "y/n" if default is None else ("Y/n" if default else "y/N"),
  193. )
  194. while True:
  195. try:
  196. # Write the prompt separately so that we get nice
  197. # coloring through colorama on Windows
  198. echo(prompt.rstrip(" "), nl=False, err=err)
  199. # Echo a space to stdout to work around an issue where
  200. # readline causes backspace to clear the whole line.
  201. value = visible_prompt_func(" ").lower().strip()
  202. except (KeyboardInterrupt, EOFError):
  203. raise Abort() from None
  204. if value in ("y", "yes"):
  205. rv = True
  206. elif value in ("n", "no"):
  207. rv = False
  208. elif default is not None and value == "":
  209. rv = default
  210. else:
  211. echo(_("Error: invalid input"), err=err)
  212. continue
  213. break
  214. if abort and not rv:
  215. raise Abort()
  216. return rv
  217. def echo_via_pager(
  218. text_or_generator: cabc.Iterable[str] | t.Callable[[], cabc.Iterable[str]] | str,
  219. color: bool | None = None,
  220. ) -> None:
  221. """This function takes a text and shows it via an environment specific
  222. pager on stdout.
  223. .. versionchanged:: 3.0
  224. Added the `color` flag.
  225. :param text_or_generator: the text to page, or alternatively, a
  226. generator emitting the text to page.
  227. :param color: controls if the pager supports ANSI colors or not. The
  228. default is autodetection.
  229. """
  230. color = resolve_color_default(color)
  231. if inspect.isgeneratorfunction(text_or_generator):
  232. i = t.cast("t.Callable[[], cabc.Iterable[str]]", text_or_generator)()
  233. elif isinstance(text_or_generator, str):
  234. i = [text_or_generator]
  235. else:
  236. i = iter(t.cast("cabc.Iterable[str]", text_or_generator))
  237. # convert every element of i to a text type if necessary
  238. text_generator = (el if isinstance(el, str) else str(el) for el in i)
  239. from ._termui_impl import pager
  240. return pager(itertools.chain(text_generator, "\n"), color)
  241. @t.overload
  242. def progressbar(
  243. *,
  244. length: int,
  245. label: str | None = None,
  246. hidden: bool = False,
  247. show_eta: bool = True,
  248. show_percent: bool | None = None,
  249. show_pos: bool = False,
  250. fill_char: str = "#",
  251. empty_char: str = "-",
  252. bar_template: str = "%(label)s [%(bar)s] %(info)s",
  253. info_sep: str = " ",
  254. width: int = 36,
  255. file: t.TextIO | None = None,
  256. color: bool | None = None,
  257. update_min_steps: int = 1,
  258. ) -> ProgressBar[int]: ...
  259. @t.overload
  260. def progressbar(
  261. iterable: cabc.Iterable[V] | None = None,
  262. length: int | None = None,
  263. label: str | None = None,
  264. hidden: bool = False,
  265. show_eta: bool = True,
  266. show_percent: bool | None = None,
  267. show_pos: bool = False,
  268. item_show_func: t.Callable[[V | None], str | None] | None = None,
  269. fill_char: str = "#",
  270. empty_char: str = "-",
  271. bar_template: str = "%(label)s [%(bar)s] %(info)s",
  272. info_sep: str = " ",
  273. width: int = 36,
  274. file: t.TextIO | None = None,
  275. color: bool | None = None,
  276. update_min_steps: int = 1,
  277. ) -> ProgressBar[V]: ...
  278. def progressbar(
  279. iterable: cabc.Iterable[V] | None = None,
  280. length: int | None = None,
  281. label: str | None = None,
  282. hidden: bool = False,
  283. show_eta: bool = True,
  284. show_percent: bool | None = None,
  285. show_pos: bool = False,
  286. item_show_func: t.Callable[[V | None], str | None] | None = None,
  287. fill_char: str = "#",
  288. empty_char: str = "-",
  289. bar_template: str = "%(label)s [%(bar)s] %(info)s",
  290. info_sep: str = " ",
  291. width: int = 36,
  292. file: t.TextIO | None = None,
  293. color: bool | None = None,
  294. update_min_steps: int = 1,
  295. ) -> ProgressBar[V]:
  296. """This function creates an iterable context manager that can be used
  297. to iterate over something while showing a progress bar. It will
  298. either iterate over the `iterable` or `length` items (that are counted
  299. up). While iteration happens, this function will print a rendered
  300. progress bar to the given `file` (defaults to stdout) and will attempt
  301. to calculate remaining time and more. By default, this progress bar
  302. will not be rendered if the file is not a terminal.
  303. The context manager creates the progress bar. When the context
  304. manager is entered the progress bar is already created. With every
  305. iteration over the progress bar, the iterable passed to the bar is
  306. advanced and the bar is updated. When the context manager exits,
  307. a newline is printed and the progress bar is finalized on screen.
  308. Note: The progress bar is currently designed for use cases where the
  309. total progress can be expected to take at least several seconds.
  310. Because of this, the ProgressBar class object won't display
  311. progress that is considered too fast, and progress where the time
  312. between steps is less than a second.
  313. No printing must happen or the progress bar will be unintentionally
  314. destroyed.
  315. Example usage::
  316. with progressbar(items) as bar:
  317. for item in bar:
  318. do_something_with(item)
  319. Alternatively, if no iterable is specified, one can manually update the
  320. progress bar through the `update()` method instead of directly
  321. iterating over the progress bar. The update method accepts the number
  322. of steps to increment the bar with::
  323. with progressbar(length=chunks.total_bytes) as bar:
  324. for chunk in chunks:
  325. process_chunk(chunk)
  326. bar.update(chunks.bytes)
  327. The ``update()`` method also takes an optional value specifying the
  328. ``current_item`` at the new position. This is useful when used
  329. together with ``item_show_func`` to customize the output for each
  330. manual step::
  331. with click.progressbar(
  332. length=total_size,
  333. label='Unzipping archive',
  334. item_show_func=lambda a: a.filename
  335. ) as bar:
  336. for archive in zip_file:
  337. archive.extract()
  338. bar.update(archive.size, archive)
  339. :param iterable: an iterable to iterate over. If not provided the length
  340. is required.
  341. :param length: the number of items to iterate over. By default the
  342. progressbar will attempt to ask the iterator about its
  343. length, which might or might not work. If an iterable is
  344. also provided this parameter can be used to override the
  345. length. If an iterable is not provided the progress bar
  346. will iterate over a range of that length.
  347. :param label: the label to show next to the progress bar.
  348. :param hidden: hide the progressbar. Defaults to ``False``. When no tty is
  349. detected, it will only print the progressbar label. Setting this to
  350. ``False`` also disables that.
  351. :param show_eta: enables or disables the estimated time display. This is
  352. automatically disabled if the length cannot be
  353. determined.
  354. :param show_percent: enables or disables the percentage display. The
  355. default is `True` if the iterable has a length or
  356. `False` if not.
  357. :param show_pos: enables or disables the absolute position display. The
  358. default is `False`.
  359. :param item_show_func: A function called with the current item which
  360. can return a string to show next to the progress bar. If the
  361. function returns ``None`` nothing is shown. The current item can
  362. be ``None``, such as when entering and exiting the bar.
  363. :param fill_char: the character to use to show the filled part of the
  364. progress bar.
  365. :param empty_char: the character to use to show the non-filled part of
  366. the progress bar.
  367. :param bar_template: the format string to use as template for the bar.
  368. The parameters in it are ``label`` for the label,
  369. ``bar`` for the progress bar and ``info`` for the
  370. info section.
  371. :param info_sep: the separator between multiple info items (eta etc.)
  372. :param width: the width of the progress bar in characters, 0 means full
  373. terminal width
  374. :param file: The file to write to. If this is not a terminal then
  375. only the label is printed.
  376. :param color: controls if the terminal supports ANSI colors or not. The
  377. default is autodetection. This is only needed if ANSI
  378. codes are included anywhere in the progress bar output
  379. which is not the case by default.
  380. :param update_min_steps: Render only when this many updates have
  381. completed. This allows tuning for very fast iterators.
  382. .. versionadded:: 8.2
  383. The ``hidden`` argument.
  384. .. versionchanged:: 8.0
  385. Output is shown even if execution time is less than 0.5 seconds.
  386. .. versionchanged:: 8.0
  387. ``item_show_func`` shows the current item, not the previous one.
  388. .. versionchanged:: 8.0
  389. Labels are echoed if the output is not a TTY. Reverts a change
  390. in 7.0 that removed all output.
  391. .. versionadded:: 8.0
  392. The ``update_min_steps`` parameter.
  393. .. versionadded:: 4.0
  394. The ``color`` parameter and ``update`` method.
  395. .. versionadded:: 2.0
  396. """
  397. from ._termui_impl import ProgressBar
  398. color = resolve_color_default(color)
  399. return ProgressBar(
  400. iterable=iterable,
  401. length=length,
  402. hidden=hidden,
  403. show_eta=show_eta,
  404. show_percent=show_percent,
  405. show_pos=show_pos,
  406. item_show_func=item_show_func,
  407. fill_char=fill_char,
  408. empty_char=empty_char,
  409. bar_template=bar_template,
  410. info_sep=info_sep,
  411. file=file,
  412. label=label,
  413. width=width,
  414. color=color,
  415. update_min_steps=update_min_steps,
  416. )
  417. def clear() -> None:
  418. """Clears the terminal screen. This will have the effect of clearing
  419. the whole visible space of the terminal and moving the cursor to the
  420. top left. This does not do anything if not connected to a terminal.
  421. .. versionadded:: 2.0
  422. """
  423. if not isatty(sys.stdout):
  424. return
  425. # ANSI escape \033[2J clears the screen, \033[1;1H moves the cursor
  426. echo("\033[2J\033[1;1H", nl=False)
  427. def _interpret_color(color: int | tuple[int, int, int] | str, offset: int = 0) -> str:
  428. if isinstance(color, int):
  429. return f"{38 + offset};5;{color:d}"
  430. if isinstance(color, (tuple, list)):
  431. r, g, b = color
  432. return f"{38 + offset};2;{r:d};{g:d};{b:d}"
  433. return str(_ansi_colors[color] + offset)
  434. def style(
  435. text: t.Any,
  436. fg: int | tuple[int, int, int] | str | None = None,
  437. bg: int | tuple[int, int, int] | str | None = None,
  438. bold: bool | None = None,
  439. dim: bool | None = None,
  440. underline: bool | None = None,
  441. overline: bool | None = None,
  442. italic: bool | None = None,
  443. blink: bool | None = None,
  444. reverse: bool | None = None,
  445. strikethrough: bool | None = None,
  446. reset: bool = True,
  447. ) -> str:
  448. """Styles a text with ANSI styles and returns the new string. By
  449. default the styling is self contained which means that at the end
  450. of the string a reset code is issued. This can be prevented by
  451. passing ``reset=False``.
  452. Examples::
  453. click.echo(click.style('Hello World!', fg='green'))
  454. click.echo(click.style('ATTENTION!', blink=True))
  455. click.echo(click.style('Some things', reverse=True, fg='cyan'))
  456. click.echo(click.style('More colors', fg=(255, 12, 128), bg=117))
  457. Supported color names:
  458. * ``black`` (might be a gray)
  459. * ``red``
  460. * ``green``
  461. * ``yellow`` (might be an orange)
  462. * ``blue``
  463. * ``magenta``
  464. * ``cyan``
  465. * ``white`` (might be light gray)
  466. * ``bright_black``
  467. * ``bright_red``
  468. * ``bright_green``
  469. * ``bright_yellow``
  470. * ``bright_blue``
  471. * ``bright_magenta``
  472. * ``bright_cyan``
  473. * ``bright_white``
  474. * ``reset`` (reset the color code only)
  475. If the terminal supports it, color may also be specified as:
  476. - An integer in the interval [0, 255]. The terminal must support
  477. 8-bit/256-color mode.
  478. - An RGB tuple of three integers in [0, 255]. The terminal must
  479. support 24-bit/true-color mode.
  480. See https://en.wikipedia.org/wiki/ANSI_color and
  481. https://gist.github.com/XVilka/8346728 for more information.
  482. :param text: the string to style with ansi codes.
  483. :param fg: if provided this will become the foreground color.
  484. :param bg: if provided this will become the background color.
  485. :param bold: if provided this will enable or disable bold mode.
  486. :param dim: if provided this will enable or disable dim mode. This is
  487. badly supported.
  488. :param underline: if provided this will enable or disable underline.
  489. :param overline: if provided this will enable or disable overline.
  490. :param italic: if provided this will enable or disable italic.
  491. :param blink: if provided this will enable or disable blinking.
  492. :param reverse: if provided this will enable or disable inverse
  493. rendering (foreground becomes background and the
  494. other way round).
  495. :param strikethrough: if provided this will enable or disable
  496. striking through text.
  497. :param reset: by default a reset-all code is added at the end of the
  498. string which means that styles do not carry over. This
  499. can be disabled to compose styles.
  500. .. versionchanged:: 8.0
  501. A non-string ``message`` is converted to a string.
  502. .. versionchanged:: 8.0
  503. Added support for 256 and RGB color codes.
  504. .. versionchanged:: 8.0
  505. Added the ``strikethrough``, ``italic``, and ``overline``
  506. parameters.
  507. .. versionchanged:: 7.0
  508. Added support for bright colors.
  509. .. versionadded:: 2.0
  510. """
  511. if not isinstance(text, str):
  512. text = str(text)
  513. bits = []
  514. if fg:
  515. try:
  516. bits.append(f"\033[{_interpret_color(fg)}m")
  517. except KeyError:
  518. raise TypeError(f"Unknown color {fg!r}") from None
  519. if bg:
  520. try:
  521. bits.append(f"\033[{_interpret_color(bg, 10)}m")
  522. except KeyError:
  523. raise TypeError(f"Unknown color {bg!r}") from None
  524. if bold is not None:
  525. bits.append(f"\033[{1 if bold else 22}m")
  526. if dim is not None:
  527. bits.append(f"\033[{2 if dim else 22}m")
  528. if underline is not None:
  529. bits.append(f"\033[{4 if underline else 24}m")
  530. if overline is not None:
  531. bits.append(f"\033[{53 if overline else 55}m")
  532. if italic is not None:
  533. bits.append(f"\033[{3 if italic else 23}m")
  534. if blink is not None:
  535. bits.append(f"\033[{5 if blink else 25}m")
  536. if reverse is not None:
  537. bits.append(f"\033[{7 if reverse else 27}m")
  538. if strikethrough is not None:
  539. bits.append(f"\033[{9 if strikethrough else 29}m")
  540. bits.append(text)
  541. if reset:
  542. bits.append(_ansi_reset_all)
  543. return "".join(bits)
  544. def unstyle(text: str) -> str:
  545. """Removes ANSI styling information from a string. Usually it's not
  546. necessary to use this function as Click's echo function will
  547. automatically remove styling if necessary.
  548. .. versionadded:: 2.0
  549. :param text: the text to remove style information from.
  550. """
  551. return strip_ansi(text)
  552. def secho(
  553. message: t.Any | None = None,
  554. file: t.IO[t.AnyStr] | None = None,
  555. nl: bool = True,
  556. err: bool = False,
  557. color: bool | None = None,
  558. **styles: t.Any,
  559. ) -> None:
  560. """This function combines :func:`echo` and :func:`style` into one
  561. call. As such the following two calls are the same::
  562. click.secho('Hello World!', fg='green')
  563. click.echo(click.style('Hello World!', fg='green'))
  564. All keyword arguments are forwarded to the underlying functions
  565. depending on which one they go with.
  566. Non-string types will be converted to :class:`str`. However,
  567. :class:`bytes` are passed directly to :meth:`echo` without applying
  568. style. If you want to style bytes that represent text, call
  569. :meth:`bytes.decode` first.
  570. .. versionchanged:: 8.0
  571. A non-string ``message`` is converted to a string. Bytes are
  572. passed through without style applied.
  573. .. versionadded:: 2.0
  574. """
  575. if message is not None and not isinstance(message, (bytes, bytearray)):
  576. message = style(message, **styles)
  577. return echo(message, file=file, nl=nl, err=err, color=color)
  578. @t.overload
  579. def edit(
  580. text: bytes | bytearray,
  581. editor: str | None = None,
  582. env: cabc.Mapping[str, str] | None = None,
  583. require_save: bool = False,
  584. extension: str = ".txt",
  585. ) -> bytes | None: ...
  586. @t.overload
  587. def edit(
  588. text: str,
  589. editor: str | None = None,
  590. env: cabc.Mapping[str, str] | None = None,
  591. require_save: bool = True,
  592. extension: str = ".txt",
  593. ) -> str | None: ...
  594. @t.overload
  595. def edit(
  596. text: None = None,
  597. editor: str | None = None,
  598. env: cabc.Mapping[str, str] | None = None,
  599. require_save: bool = True,
  600. extension: str = ".txt",
  601. filename: str | cabc.Iterable[str] | None = None,
  602. ) -> None: ...
  603. def edit(
  604. text: str | bytes | bytearray | None = None,
  605. editor: str | None = None,
  606. env: cabc.Mapping[str, str] | None = None,
  607. require_save: bool = True,
  608. extension: str = ".txt",
  609. filename: str | cabc.Iterable[str] | None = None,
  610. ) -> str | bytes | bytearray | None:
  611. r"""Edits the given text in the defined editor. If an editor is given
  612. (should be the full path to the executable but the regular operating
  613. system search path is used for finding the executable) it overrides
  614. the detected editor. Optionally, some environment variables can be
  615. used. If the editor is closed without changes, `None` is returned. In
  616. case a file is edited directly the return value is always `None` and
  617. `require_save` and `extension` are ignored.
  618. If the editor cannot be opened a :exc:`UsageError` is raised.
  619. Note for Windows: to simplify cross-platform usage, the newlines are
  620. automatically converted from POSIX to Windows and vice versa. As such,
  621. the message here will have ``\n`` as newline markers.
  622. :param text: the text to edit.
  623. :param editor: optionally the editor to use. Defaults to automatic
  624. detection.
  625. :param env: environment variables to forward to the editor.
  626. :param require_save: if this is true, then not saving in the editor
  627. will make the return value become `None`.
  628. :param extension: the extension to tell the editor about. This defaults
  629. to `.txt` but changing this might change syntax
  630. highlighting.
  631. :param filename: if provided it will edit this file instead of the
  632. provided text contents. It will not use a temporary
  633. file as an indirection in that case. If the editor supports
  634. editing multiple files at once, a sequence of files may be
  635. passed as well. Invoke `click.file` once per file instead
  636. if multiple files cannot be managed at once or editing the
  637. files serially is desired.
  638. .. versionchanged:: 8.2.0
  639. ``filename`` now accepts any ``Iterable[str]`` in addition to a ``str``
  640. if the ``editor`` supports editing multiple files at once.
  641. """
  642. from ._termui_impl import Editor
  643. ed = Editor(editor=editor, env=env, require_save=require_save, extension=extension)
  644. if filename is None:
  645. return ed.edit(text)
  646. if isinstance(filename, str):
  647. filename = (filename,)
  648. ed.edit_files(filenames=filename)
  649. return None
  650. def launch(url: str, wait: bool = False, locate: bool = False) -> int:
  651. """This function launches the given URL (or filename) in the default
  652. viewer application for this file type. If this is an executable, it
  653. might launch the executable in a new session. The return value is
  654. the exit code of the launched application. Usually, ``0`` indicates
  655. success.
  656. Examples::
  657. click.launch('https://click.palletsprojects.com/')
  658. click.launch('/my/downloaded/file', locate=True)
  659. .. versionadded:: 2.0
  660. :param url: URL or filename of the thing to launch.
  661. :param wait: Wait for the program to exit before returning. This
  662. only works if the launched program blocks. In particular,
  663. ``xdg-open`` on Linux does not block.
  664. :param locate: if this is set to `True` then instead of launching the
  665. application associated with the URL it will attempt to
  666. launch a file manager with the file located. This
  667. might have weird effects if the URL does not point to
  668. the filesystem.
  669. """
  670. from ._termui_impl import open_url
  671. return open_url(url, wait=wait, locate=locate)
  672. # If this is provided, getchar() calls into this instead. This is used
  673. # for unittesting purposes.
  674. _getchar: t.Callable[[bool], str] | None = None
  675. def getchar(echo: bool = False) -> str:
  676. """Fetches a single character from the terminal and returns it. This
  677. will always return a unicode character and under certain rare
  678. circumstances this might return more than one character. The
  679. situations which more than one character is returned is when for
  680. whatever reason multiple characters end up in the terminal buffer or
  681. standard input was not actually a terminal.
  682. Note that this will always read from the terminal, even if something
  683. is piped into the standard input.
  684. Note for Windows: in rare cases when typing non-ASCII characters, this
  685. function might wait for a second character and then return both at once.
  686. This is because certain Unicode characters look like special-key markers.
  687. .. versionadded:: 2.0
  688. :param echo: if set to `True`, the character read will also show up on
  689. the terminal. The default is to not show it.
  690. """
  691. global _getchar
  692. if _getchar is None:
  693. from ._termui_impl import getchar as f
  694. _getchar = f
  695. return _getchar(echo)
  696. def raw_terminal() -> AbstractContextManager[int]:
  697. from ._termui_impl import raw_terminal as f
  698. return f()
  699. def pause(info: str | None = None, err: bool = False) -> None:
  700. """This command stops execution and waits for the user to press any
  701. key to continue. This is similar to the Windows batch "pause"
  702. command. If the program is not run through a terminal, this command
  703. will instead do nothing.
  704. .. versionadded:: 2.0
  705. .. versionadded:: 4.0
  706. Added the `err` parameter.
  707. :param info: The message to print before pausing. Defaults to
  708. ``"Press any key to continue..."``.
  709. :param err: if set to message goes to ``stderr`` instead of
  710. ``stdout``, the same as with echo.
  711. """
  712. if not isatty(sys.stdin) or not isatty(sys.stdout):
  713. return
  714. if info is None:
  715. info = _("Press any key to continue...")
  716. try:
  717. if info:
  718. echo(info, nl=False, err=err)
  719. try:
  720. getchar()
  721. except (KeyboardInterrupt, EOFError):
  722. pass
  723. finally:
  724. if info:
  725. echo(err=err)