This is a command line tool I’ve been working on for rendering various types of content in the terminal.
The core functionality is syntax highlighting with line numbers and indent guides.
It can render Markdown (commonmark), and does a reasonable job given the limitations of Terminal emulators.
It can render JSON with syntax highlighting.
Finally it can display general purpose rich text with “console markup” (like bbcode).
All of the above can have borders, styles, alignment applied independently.
This was written hastily, the majority of it came together over a single weekend. This is because it was built with Rich (a Python library which I am also the author of) which does the heavy lifting.
Currently you can install it as a Python package, but I plan on adding it to other channels so you can get it via your preferred package manager.
I know there are some excellent apps with equivalent features but I’m hoping this will become a versatile tool for developers (in particular). I’ll be adding more formats in the future.
Hope you find it interesting. I’ll be around for a while to answer questions.
Progress bar support would be really interesting - providing a neat way to add progress bars to shell scripts that do a bunch of work.
Not sure how to go about designing a CLI tool that adds progress bars to things that might involve executing other shell commands though - I guess "pv" is good prior art here.
Bro, you are a Python GOD! I been just loving everything about Rich since I discovered it, and your other Python related tools have been fantastic as well. Permanent parts of my "Python toolbox", alongside "Click", "Flask", "Requests", and a bunch of other equally excellent such goodies. Thank you so very much for creating the things you do, (and for publishing them under FOSS licenses).
This is going to be useful for many things in my teaching. I've just got my students to install Rich / textual for my python coding course as I've featured it as one of my Modules of the week. https://nccastaff.bournemouth.ac.uk/jmacey/msc/PipeLineAndTD... So this will come in handy. Great work.
That’s right. I would usually reach for Typer for CLIs. I chose Click because I wanted to extend the —-help and I wasn’t certain If Typer exposed the internals.
I love this tool! I'm currently experiencing issues with the pager in the gnome-terminal, but I'm guessing the build in pager is quite a new functionality so I'm patient. Thanks!
35 comments
[ 2.3 ms ] story [ 95.9 ms ] threadThis is a command line tool I’ve been working on for rendering various types of content in the terminal.
The core functionality is syntax highlighting with line numbers and indent guides.
It can render Markdown (commonmark), and does a reasonable job given the limitations of Terminal emulators.
It can render JSON with syntax highlighting.
Finally it can display general purpose rich text with “console markup” (like bbcode).
All of the above can have borders, styles, alignment applied independently.
This was written hastily, the majority of it came together over a single weekend. This is because it was built with Rich (a Python library which I am also the author of) which does the heavy lifting.
Currently you can install it as a Python package, but I plan on adding it to other channels so you can get it via your preferred package manager.
I know there are some excellent apps with equivalent features but I’m hoping this will become a versatile tool for developers (in particular). I’ll be adding more formats in the future.
Hope you find it interesting. I’ll be around for a while to answer questions.
Not sure how to go about designing a CLI tool that adds progress bars to things that might involve executing other shell commands though - I guess "pv" is good prior art here.
https://tqdm.github.io/docs/cli/
$ rich --print "\n hello world"
but it just returned
\n hello world
Also, where can I find the list of emoji and the correspondent ":description:"?
Does this support paging? I could see myself using this a lot for markdown files if it does.
And do you plan on supporting RST files?
Are there any plans to make it easy to generate the Rich tables from the command line? Such as from CSV, TSV, JSON/L, or even SQLite databases?
$ rich "hello world" -p -a <TAB> ...
Where "..." is all the possible values that can be taken in.