Format Python data as aligned terminal tables with no dependencies
Project description
philiprehberger-cli-table
Format Python data as aligned terminal tables with no dependencies.
Install
pip install philiprehberger-cli-table
Usage
Dict list mode
from philiprehberger_cli_table import table
data = [
{"name": "Alice", "age": 30, "city": "Berlin"},
{"name": "Bob", "age": 25, "city": "Vienna"},
{"name": "Charlie", "age": 35, "city": "Zurich"},
]
table(data)
# name age city
# ------- --- ------
# Alice 30 Berlin
# Bob 25 Vienna
# Charlie 35 Zurich
Headers + rows mode
from philiprehberger_cli_table import table
table(
headers=["Product", "Price", "Stock"],
rows=[
["Widget", "9.99", "142"],
["Gadget", "24.99", "38"],
],
)
# Product Price Stock
# ------- ----- -----
# Widget 9.99 142
# Gadget 24.99 38
Column alignment
from philiprehberger_cli_table import table
table(
data=[
{"item": "Coffee", "qty": 3, "price": "4.50"},
{"item": "Tea", "qty": 12, "price": "2.00"},
],
align={"qty": "right", "price": "right"},
)
# item qty price
# ------ --- -----
# Coffee 3 4.50
# Tea 12 2.00
Styles
from philiprehberger_cli_table import format_table
# Markdown style
print(format_table(
headers=["Name", "Score"],
rows=[["Alice", "95"], ["Bob", "87"]],
style="markdown",
))
# | Name | Score |
# | ----- | ----- |
# | Alice | 95 |
# | Bob | 87 |
# No borders
print(format_table(
headers=["Name", "Score"],
rows=[["Alice", "95"], ["Bob", "87"]],
style="none",
))
# Name Score
# Alice 95
# Bob 87
Cell truncation
from philiprehberger_cli_table import table
table(
data=[{"description": "A very long description that goes on and on"}],
max_width=20,
)
Wide character support
Supports CJK and other wide Unicode characters with correct column alignment.
API
| Function | Description |
|---|---|
format_table(headers, rows, *, data, align, max_width, style) |
Returns a formatted table as a string |
table(data, headers, rows, **kwargs) |
Prints a formatted table to stdout |
Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
headers |
list[str] | None |
None |
Column header names |
rows |
list[list[Any]] | None |
None |
List of row value lists |
data |
list[dict[str, Any]] | None |
None |
List of dicts (keys become headers) |
align |
dict[str, Align] | None |
None |
Per-column alignment: "left", "right", "center" |
max_width |
int | None |
None |
Truncate cell values to this width |
style |
Style |
"simple" |
Border style: "simple", "markdown", "none" |
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file philiprehberger_cli_table-0.1.2.tar.gz.
File metadata
- Download URL: philiprehberger_cli_table-0.1.2.tar.gz
- Upload date:
- Size: 5.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc989ee4133f7bb0820287619af82a2a63ae2cbbc82621dd0cb2ed5a48590115
|
|
| MD5 |
95e8d5f83a49bdf9daf010acabf8cf56
|
|
| BLAKE2b-256 |
c1eeef9423c0e62ca2f3801a08d254a99cc2914afe22410d83767d0c3a6e26b4
|
File details
Details for the file philiprehberger_cli_table-0.1.2-py3-none-any.whl.
File metadata
- Download URL: philiprehberger_cli_table-0.1.2-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df845ae70d0a3e6b369f4080eb82d75364a019b86ed610f087e51cdc6eafab3f
|
|
| MD5 |
8b7153e4bb703ca92cc025faa05e3b0c
|
|
| BLAKE2b-256 |
ebec9a9dde620639f63cc27752a0faf0fafb3855c005e83c3a51c0a3327def58
|