ConsoleTable is a helper class that allows you to print data to a console in a clean, table-like fashion. It's intended for use in commandline applications with information-dense output. It checks your terminal window size (or COLUMNS environment variable) to ensure your data will fit, allows you to define table column sizes, and then just supply the ConsoleTable instance with data which will be truncated or padded as needed to fit your specifications.
It can be used to generate output similar to this screenshot:
You're able to specify left/right/center text justification, headers, footers, and most importantly different sizes including exact character widths, screen percentages, and *
for whatever is left. If the window resizes the class will notice and output all new lines with recalculated locations (previous lines are not re-printed).
Note: This project is not like hirb
or console-text-formatter
and it makes no attempt to take any sort of ActiveRecord objects or an array of hashes and automatically fit the data to a nice table. It gives much, much more control over to the developer in how the output is formatted, but is much more difficult to work with as a trade-off. ConsoleTable is meant to save on a lot of math and calculation, but will do no analyzing of your data itself in order to format it, and it will never print wider than your console window. Data is printed as rows are added, ConsoleTable doesn't "wait" until it has all the data to figure out optimal sizes for columns. Please read the Usage section carefully for examples.
Add this line to your application's Gemfile:
gem 'console_table'
And then execute:
$ bundle
Or install it yourself as:
$ gem install console_table
Here's a short-and-sweet example of using ConsoleTable
require 'console_table'
ConsoleTable.define(["Name", "DOB", "Title"]) do |table|
table << ["Rod", "06-15-80", "Software Engineer"]
table << ["Julia", "04-25-81", "Piano Teacher"]
end
This program will output, on a console 80 characters wide:
================================================================================
Name DOB Title
--------------------------------------------------------------------------------
Rod 06-15-80 Software Engineer
Julia 04-25-81 Piano Teacher
================================================================================
This usage takes advantage of the fact that ConsoleTable infers a lot of defaults. For more details about how to exercise the real power of ConsoleTable, refer to the next section.
ConsoleTable needs a lot of information to get going, and it can be somewhat awkward to work with.
First, we need to define the layout of our table. This consists of the exact order of the columns we want, their identifiers, titles, and sizes. Because we want to specify order, the layout config is an array, and each element of the array is a hash of config values for the column that element of the array defines. For example:
table_config = [
{:key=>:name, :size=>15, :title=>"Name"},
{:key=>:birthday, :size=>8, :title=>"DOB"},
{:key=>:nickname, :size=>0.3, :title=>"Nickname(s)"},
{:key=>:motto, :size=>"*", :title=>"Motto"},
]
ConsoleTable.define(table_config) do |table|
#Print data to the table here
end
Here we've defined a table with four columns, a Name, DOB, Nickname, and Motto. As we defined the details of the columns, by using an array we also defined their order.
- The Name column is exactly 15 characters wide, meaning that any data printed into that column will be right-padded with spaces to take up 15 characters, or if the name is longer than 15 characters it will be truncated.
- Next is the DOB, this is another field that's exactly 8 characters.
- After that is the Nickname, which has a size of 0.3, or 30%. This column will take 30% of the available space in the window, but will never encroach on space allocated to exact-character sizes like DOB or Name.
- Last is Motto, whose size is simply
"*"
. The"*"
is the default size as well, so the entire:size
could have been left out of this column definition."*"
means to consume whatever is left of the window. You can have multiple"*"
entries, and the available space will be divided among them equally.
Percentages and *
sizes have no minimums, meaning they may not appear at all if the window is too small. In this case, we have a table whose first column is 15 characters and whose second column is 8 characters. The remaining columns will only appear if there is room, and there will be spaces between all four columns, so three spaces separating. Thus, your window must be 15+8+3=26 characters wide or an exception will be thrown.
Once we have our table, we must print to it. Printing a line of data means supplying the table with a Hash
whose keys match the values for :key
in the column config. So for example, we might do:
ConsoleTable.define(table_config) do |table|
table << {
:name=>"Rod",
:birthday=>"04-14-80",
:nickname=>"Chainsaw",
:motto=>"It works on my machine"
}
end
If we run this in a console exactly 80 characters wide, the result is:
===============================================================================
Name DOB Nickname(s) Motto
-------------------------------------------------------------------------------
Rod 04-14-80 Chainsaw It works on my machine
===============================================================================
We can specify justification options for columns as well, and even overwrite them when we supply row data, simply by using Hash
es instead of String
s for the values. For example:
table_config = [
{:key=>:name, :size=>15, :title=>"Name"},
{:key=>:birthday, :size=>8, :title=>"DOB"},
{:key=>:nickname, :size=>0.3, :title=>"Nickname(s)", :justify=>:center},
{:key=>:motto, :size=>"*", :title=>"Motto", :justify=>:right},
]
ConsoleTable.define(table_config) do |table|
table << {
:name=>"Rod",
:birthday=>"04-14-80",
:nickname=>{:text=>"Chainsaw", :justify=>:left},
:motto=>"It works on my machine"
}
end
This will output:
===============================================================================
Name DOB Nickname(s) Motto
-------------------------------------------------------------------------------
Rod 04-14-80 Chainsaw It works on my machine
===============================================================================
Notice how the Nickname column specifies that the justification will be centered, but when we actually output the data we say {:text=>"Chainsaw", :justify=>:left}
thus overriding the justification to be left. As a result, the header name is centered, but the data is left-aligned. In the case of motto, we set the justification to the right-aligned, but never override it, so both the column header and the data itself are right-aligned.
There are lots of different supported options for outputting the row data elements, here's a pretty comprehensive example and it's output
table_config = [
{:key=>:name, :size=>15, :title=>"Name"},
{:key=>:birthday, :size=>8, :title=>"DOB"},
{:key=>:nickname, :size=>0.3, :title=>"Nickname(s)", :justify=>:center},
{:key=>:motto, :size=>"*", :title=>"Motto", :justify=>:right}
]
ConsoleTable.define(table_config) do |table|
table << {
:name=>"Rod".colorize(:red) #Uses 'colorize' gem
:birthday=>"04-14-80".blue,
:nickname=>{:text=>"Chainsaw", :justify=>:left},
:motto=>{:text=>"This is a very long motto, I don't mind if it gets cut off but I'd like it to indicate as such with ellipses", :ellipsize=>true}
}
end
will output
===============================================================================
Name DOB Nickname(s) Motto
-------------------------------------------------------------------------------
Rod 04-14-80 Chainsaw This is a very long motto, I don't...
===============================================================================
Due to limitations of this readme format, you'll have to take my word for it that the colors placed by the 'colorize' gem are preserved, and that the table correctly handles resetting ANSI colors when truncating messages that have formatting.
Another little trick is that you can specify justification options by convention without using hashes for the values, simply by appending or prepending a tab character to the string. For example:
table_config = [
{:key=>:col1, :size=>26, :title=>"Column 1", :justify=>:right},
{:key=>:col2, :size=>26, :title=>"Column 2", :justify=>:left},
{:key=>:col3, :size=>26, :title=>"Column 3", :justify=>:center}
]
ConsoleTable.define(table_config) do |table|
table << {
:col1=>"Right",
:col2=>"Left",
:col3=>"Center"
}
table << {
:col1=>"Left\t",
:col2=>"\tCenter\t",
:col3=>"\tRight"
}
end
This will output:
================================================================================
Column 1 Column 2 Column 3
--------------------------------------------------------------------------------
Right Left Center
Left Center Right
================================================================================
Notice here how the columns all have justifications set, but the values in the second row override all of them, simply by appending a tab character for left justified, prepending a tab character for right justified, and doing both for center. The tab characters themselves are removed. Please note this convention is not supported for the column definitions using the "title" attribute, there you must use hash properties to set a column-level justification.
You can also add a title and a footer to the table, or indent the entire table within the window using different options. Again, here's another example that should more-or-less speak for itself.
require 'console_table'
require 'colorize'
table_config = [
{:key=>:title, :size=>15, :title=>"Movie Title"},
{:key=>:name, :size=>15, :title=>"Name"},
{:key=>:release_date, :size=>8, :title=>"Release Date Too Long"},
{:key=>:tagline, :size=>"*", :title=>"Motto", :justify=>:right},
]
ConsoleTable.define(table_config, :left_margin=>5, :right_margin=>10, :title=>"Movie Killers") do |table|
table << {
:title=>"Friday the 13th",
:name=>{:text=>"Jason's Mom", :justify=>:left},
:release_date=>"05-09-80".blue,
:tagline=>{:text=>"They were warned...They are doomed...And on Friday the 13th, nothing will save them.", :ellipsize=>true}
}
table << {
:title=>"Halloween".white.on_red,
:name=>{:text=>"Michael Meyers", :justify=>:left},
:release_date=>"10-25-80".blue,
:tagline=>{:text=>"Everyone is entitled to one good scare", :ellipsize=>true}
}
table << {
:title=>{:text=>"Nightmare on Elm St."},
:name=>{:text=>"Freddy Krueger", :justify=>:left},
:release_date=>{text: "11-16-84".blue},
:tagline=>{:text=>"A scream that wakes you up, might be your own", :ellipsize=>true}
}
table << ["Hellraiser", "Pinhead", "9-18-87", "Demon to some. Angel to others."]
table.footer << "This is just a line of footer text"
table.footer << "This is a second footer with \nlots of \nlinebreaks in it."
end
which yields:
=================================================================
Movie Killers
Movie Title Name Release Motto
-----------------------------------------------------------------
Friday the 13th Jason's Mom 05-09-80 They were warned...Th...
Halloween Michael Meyers 10-25-80 Everyone is entitled ...
Nightmare on El Freddy Krueger 11-16-84 A scream that wakes y...
Hellraiser Pinhead 9-18-87 Demon to some. Angel to
-----------------------------------------------------------------
This is just a line of footer text
This is a second footer with
lots of
linebreaks in it.
=================================================================
Note the alternative method of calling <<
where you can supply an Array instead of a hash, and ConsoleTable will infer from the array order which value goes in what column
Here's a somewhat more practical example:
require 'console_table'
require 'json'
require 'net/http'
require 'open-uri'
require 'colorize'
symbols = ["YHOO", "AAPL", "GOOG", "MSFT", "C", "MMM", "KO", "WMT", "GM", "IBM", "MCD", "VZ", "HD", "DIS", "INTC"]
params = symbols.collect{|s| "\"#{s}\"" }.join(",")
url = "https://query.yahooapis.com/v1/public/yql?q=select * from yahoo.finance.quotes where symbol in (#{params})&env=https://datatables.org/alltables.env&format=json"
uri = URI.parse(URI::encode(url))
response = Net::HTTP.get_response(uri)
json = JSON.parse(response.body)
table_config = [
{:key=>:symbol, :title=>"Symbol", :size=>6},
{:key=>:name, :title=>"Name", :size=>17},
{:key=>:price, :title=>"Price", :size=>5, :justify=>:right},
{:key=>:change, :title=>"Change", :size=>7, :justify=>:right},
{:key=>:recommendation, :title=>"Recommendation", :size=>15, :justify=>:right}
]
ConsoleTable.define(table_config, :title=>"Stock Prices") do |table|
json["query"]["results"]["quote"].each do |j|
change = j["ChangeRealtime"]
if change.start_with?("+")
change = change.green
else
change = change.red
end
recommendation = (rand() <= 0.5) ? "BUY!".white.on_green.bold.underline : "Sell".yellow
table << [
j["Symbol"].magenta,
j["Name"],
j["LastTradePriceOnly"],
change,
recommendation
]
end
table.footer << "Recommendations randomly generated"
end
And the output:
======================================================
Stock Prices
Symbol Name Price Change Recommendation
------------------------------------------------------
YHOO Yahoo! Inc. 44.42 +0.495 Sell
AAPL Apple Inc. 127.0 +0.62 BUY!
GOOG Google Inc. 549.0 +6.08 BUY!
MSFT Microsoft Corpora 43.87 +0.78 Sell
C Citigroup, Inc. C 51.20 +0.31 BUY!
MMM 3M Company Common 165.9 +0.03 Sell
KO Coca-Cola Company 41.99 -0.18 BUY!
WMT Wal-Mart Stores, 85.81 -0.08 Sell
GM General Motors Co 37.62 -0.40 BUY!
IBM International Bus 160.4 +1.88 BUY!
MCD MCDONALD'S CORPOR 95.65 +0.56 BUY!
VZ Verizon Communica 49.31 -0.21 BUY!
HD Home Depot, Inc. 111.8 -0.27 BUY!
DIS Walt Disney Compa 104.1 +0.59 BUY!
INTC Intel Corporation 34.36 +0.235 Sell
------------------------------------------------------
Recommendations randomly generated
======================================================
And yes, you can make the table super-ugly and lame if you want by adding :borders=>true
to the define call, like so:
ConsoleTable.define(table_config, :title=>"Stock Prices", :borders=>true) do |table|
Which will yield this, if you're into that sort of thing:
*======================================================*
| Stock Prices |
+------+-----------------+-----+-------+---------------+
|Symbol|Name |Price| Change| Recommendation|
+------+-----------------+-----+-------+---------------+
|YHOO |Yahoo! Inc. |44.42| +0.495| BUY!|
+------+-----------------+-----+-------+---------------+
|AAPL |Apple Inc. |127.0| +0.62| BUY!|
+------+-----------------+-----+-------+---------------+
|GOOG |Google Inc. |549.0| +6.08| Sell|
+------+-----------------+-----+-------+---------------+
|MSFT |Microsoft Corpora|43.87| +0.78| Sell|
+------+-----------------+-----+-------+---------------+
|C |Citigroup, Inc. C|51.20| +0.31| Sell|
+------+-----------------+-----+-------+---------------+
|MMM |3M Company Common|165.9| +0.03| BUY!|
+------+-----------------+-----+-------+---------------+
|KO |Coca-Cola Company|41.99| -0.18| Sell|
+------+-----------------+-----+-------+---------------+
|WMT |Wal-Mart Stores, |85.81| -0.08| BUY!|
+------+-----------------+-----+-------+---------------+
|GM |General Motors Co|37.62| -0.40| BUY!|
+------+-----------------+-----+-------+---------------+
|IBM |International Bus|160.4| +1.88| BUY!|
+------+-----------------+-----+-------+---------------+
|MCD |MCDONALD'S CORPOR|95.65| +0.56| Sell|
+------+-----------------+-----+-------+---------------+
|VZ |Verizon Communica|49.31| -0.21| BUY!|
+------+-----------------+-----+-------+---------------+
|HD |Home Depot, Inc. |111.8| -0.27| BUY!|
+------+-----------------+-----+-------+---------------+
|DIS |Walt Disney Compa|104.1| +0.59| BUY!|
+------+-----------------+-----+-------+---------------+
|INTC |Intel Corporation|34.36| +0.235| Sell|
+------+-----------------+-----+-------+---------------+
| Recommendations randomly generated|
*======================================================*
A lot of times, supplying less information means that ConsoleTable will just guess at various defaults. For example, if you do not provide a key for the table config, ConsoleTable will simply number your keys with names like 'col1', 'col2', etc. If you do not provide a title, it will capitalize
whatever key you are using for the column, or use something like "Column 1" if you do not supply one. If you do not supply a size, ConsoleTable will just assume you want "*" as the size (remember, you can have many "*"s and the space is divided equally).
Additionally, you can give ONLY the titles for columns by simply suppling an array of strings as the console config. With this ability, it's possible to define and use ConsoleTable in a remarkably abbreviated manner, where most of the control of the formatting is unexercised.
require 'console_table'
ConsoleTable.define(["Name", "DOB", "Title"]) do |table|
table << ["Rod", "06-15-80", "Software Engineer"]
table << ["Julia", "04-25-81", "Piano Teacher"]
end
Which yields:
================================================================================
Name DOB Title
--------------------------------------------------------------------------------
Rod 06-15-80 Software Engineer
Julia 04-25-81 Piano Teacher
================================================================================
Which is the original Quick Start example up above.
For more examples of different ways of using ConsoleTable, refer to the test file in this repository, which has many many different examples of usage.
- Fork it ( https://github.com/rodhilton/console_table/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request