rich 10.15.2-1ubuntu1 source package in Ubuntu

Changelog

rich (10.15.2-1ubuntu1) jammy; urgency=low

  * Merge from Debian unstable. Remaining changes:
    - Use TERM=linux to fix build and tests

rich (10.15.2-1) unstable; urgency=medium

  * New upstream release
  * debian/control
    - bump Standards-Version to 4.6.0.1 (no changes needed)

 -- Gianfranco Costamagna <email address hidden>  Mon, 13 Dec 2021 15:11:36 +0100

Upload details

Uploaded by:
Gianfranco Costamagna
Uploaded to:
Jammy
Original maintainer:
Sandro Tosi
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
rich_10.15.2.orig.tar.xz 14.9 MiB 1f0bd06b958c9138be597977b82f52afa636a1b2c18e114eeb6f228cca1d38d7
rich_10.15.2-1ubuntu1.debian.tar.xz 4.0 KiB db0bc96c3edadbbe8074ca2d6525d0c100f8c3ed7149f072056f073d1fc1e5fa
rich_10.15.2-1ubuntu1.dsc 2.1 KiB a39e0ffe54ff05e4e55b594389444e2f8675b2e62f9ef81c2b20bbacfdd5882d

View changes file

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.