rich 13.3.1-1 source package in Ubuntu

Changelog

rich (13.3.1-1) unstable; urgency=medium

  * New upstream release

 -- Sandro Tosi <email address hidden>  Mon, 13 Feb 2023 22:31:56 -0500

Upload details

Uploaded by:
Sandro Tosi
Uploaded to:
Sid
Original maintainer:
Sandro Tosi
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Lunar release main misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
rich_13.3.1-1.dsc 2.1 KiB e6b94537980de05bf81c6855da315af96d0848e60ede0a67023a738aae659d76
rich_13.3.1.orig.tar.xz 13.8 MiB 728e0ad25de9448fedee56acaa3219207e7c98d9d56fda5cfd5daa5d254acaac
rich_13.3.1-1.debian.tar.xz 3.8 KiB 48f4f4eea0d9491f6ce0d8cdf4a951f58cb045c39b16cefeae77d6163288120b

Available diffs

No changes file available.

Binary packages built by this source

python3-rich: render rich text, tables, progress bars, syntax highlighting, markdown and more

 Rich is a Python library for rich text and beautiful formatting in the
 terminal.
 .
 The Rich API makes it easy to add color and style to terminal output. Rich can
 also render pretty tables, progress bars, markdown, syntax highlighted source
 code, tracebacks, and more — out of the box.
 .
 Here's a list of the core functionalities of rich:
 .
  * to effortlessly add rich output to your application, you can import the rich
    print method, which has the same signature as the builtin Python function
  * Rich can be installed in the Python REPL, so that any data structures will
    be pretty printed and highlighted
  * for more control over rich terminal content, import and construct a Console
    object. The Console object has a print method which has an intentionally
    similar interface to the builtin print function
  * to insert an emoji in to console output place the name between two colons
  * Rich can render flexible tables with unicode box characters. There is a
    large variety of formatting options for borders, styles, cell alignment etc
  * Rich can render multiple flicker-free progress bars to track long-running
    tasks.
  * Rich can render content in neat columns with equal or optimal width.
  * Rich can render markdown and does a reasonable job of translating the
    formatting to the terminal
  * Rich can render beautiful tracebacks which are easier to read and show more
    code than standard Python tracebacks. You can set Rich as the default
    traceback handler so all uncaught exceptions will be rendered by Rich.