Skip to content

jedib0t/go-pretty

Folders and files

NameName
Last commit message
Last commit date

Latest commit

18e8a01 · Mar 27, 2025
Feb 10, 2025
Feb 10, 2025
Jan 8, 2024
Dec 13, 2024
Mar 1, 2025
Mar 27, 2025
Jan 31, 2021
Apr 29, 2018
Apr 29, 2018
Dec 9, 2024
Feb 10, 2025
Nov 8, 2022
Mar 13, 2024
Feb 10, 2025
Feb 10, 2025
May 20, 2018

Repository files navigation

go-pretty

Go Reference Build Status Coverage Status Go Report Card Quality Gate Status

Utilities to prettify console output of tables, lists, progress-bars, text, etc. with a heavy emphasis on customization.

Usage

The current major version of this package is v6, and it follows the standard outlined here.

Run go get github.com/jedib0t/go-pretty/v6 to add this as a dependency to your project, and import the packages in your code using one or more of these:

  • github.com/jedib0t/go-pretty/v6/list
  • github.com/jedib0t/go-pretty/v6/progress
  • github.com/jedib0t/go-pretty/v6/table
  • github.com/jedib0t/go-pretty/v6/text

Table

Pretty-print tables in a terminal with colors, nested tables and more.

+-----+------------+-----------+--------+-----------------------------+
|   # | FIRST NAME | LAST NAME | SALARY |                             |
+-----+------------+-----------+--------+-----------------------------+
|   1 | Arya       | Stark     |   3000 |                             |
|  20 | Jon        | Snow      |   2000 | You know nothing, Jon Snow! |
| 300 | Tyrion     | Lannister |   5000 |                             |
+-----+------------+-----------+--------+-----------------------------+
|     |            | TOTAL     |  10000 |                             |
+-----+------------+-----------+--------+-----------------------------+

Execute go run github.com/jedib0t/go-pretty/v6/cmd/demo-table@latest colors to get:

Tables with Colors within a Table in a Terminal

More details can be found here: table/

Progress

Track the Progress of one or more Tasks like downloading multiple files in parallel.

Progress Demo in a Terminal

More details can be found here: progress/

List

Pretty-print lists with multiple levels/indents into ASCII/Unicode strings.

╭─ Game Of Thrones
│  ├─ Winter
│  ├─ Is
│  ╰─ Coming
│     ├─ This
│     ├─ Is
│     ╰─ Known
╰─ The Dark Tower
   ╰─ The Gunslinger

More details can be found here: list/

Text

Utility functions to manipulate text with or without ANSI escape sequences. Most of the functions available are used in one or more of the other packages here.

GoDoc has examples for all the available functions.