Print tabular data in markdown format
Project description
table2md
Print tabular data in markdown format
Installation
Tested on Pythons above 3.6+.
pip3 install table2md
Usage
from table2md import MarkdownTable
# All following examples print the following table onto stdout:
# | constant | value |
# |----------|-------|
# | e | 2.71 |
# | pi | 3.14 |
# | sqrt2 | 1.41 |
# With dictionaries
MarkdownTable.from_dicts([
{"constant": "e", "value": 2.71},
{"constant": "pi", "value": 3.14},
{"constant": "sqrt2", "value": 1.41},
]).print()
# With 2D iterables
MarkdownTable.from_2d_iterable([
["constant", "value"],
["pi", 6.28],
["e", 2.71],
["sqrt2", 1.41],
]).print()
# With named tuples
from typing import NamedTuple
class Constant(NamedTuple):
constant: str
value: float
MarkdownTable.from_namedtuples([
Constant("e", 2.71),
Constant("pi", 3.14),
Constant("sqrt2", 1.41),
]).print()
MarkdownTable automatically coalesces all values into strings (with str(value)
);
with the exception of the MarkdownTable.from_dicts
, where keys are assumed to be strings.
To use custom formatting, either coalesce values into strings on your own,
use your own classes with custom __str__
methods,
or use the special MarkdownTable.from_serializable
constructor.
It takes an iterable of objects with _fields
property and a serialize
method. Example:
from table2md import MarkdownTable
from typing import NamedTuple
from datetime import datetime
# Named tuples already provide the _fields property,
# so we only need to implement the serialize method.
class TemperatureReadout(NamedTuple):
tstamp: datetime
value: float
def serialize(self) -> tuple[str, str]:
return self.tstamp.strftime("%Y-%m-%d %H:%M"), f"{self.value:.1f}"
MarkdownTable.from_serializable([
TemperatureReadout(datetime(2021, 11, 1, 10, 0, 0), 10.411),
TemperatureReadout(datetime(2021, 11, 1, 12, 0, 0), 12.782),
TemperatureReadout(datetime(2021, 11, 1, 14, 0, 0), 11.214),
]).print()
# Output:
# | tstamp | value |
# |------------------|-------|
# | 2021-11-01 10:00 | 10.4 |
# | 2021-11-01 12:00 | 12.8 |
# | 2021-11-01 14:00 | 11.2 |
Documentation
MarkdownTable
A class to represent tabular data
-
MarkdownTable(data: List[List[Str]]):
Initializes a table from a 2D list of strings. 1st row is always the header row. See utility MarkdownTable.from_* helper classmethods. Provided lists are not copied! -
markdown_table.__str__() -> str:
Serializes the contained tabular data to a markdown table. First row is assumed to be the header row. -
markdown_table.validate() -> None:
Ensures the contained table is good-to-print - that is it has a header; and all rows with data have the same number of cells as the header.
Raises a sub-class of InvalidData in case invalid state is detected. -
markdown_table.print(end: str = "", file: SupportsWrite[str] = sys.stdout, flush: bool = False) -> None:
Validates the table, and then prints it. 'end', 'file' and 'flush' arguments are passed through to the builtin print function.
Pleas note that the serialized table already has a newline at the end, soend="\n"
is not necessary. -
MarkdownTable.from_2d_iterable(iters: Iterable[Iterable[Any]]) -> MarkdownTable:
Initializes the table from a 2D iterable. Every cell is saved by callingstr(cell)
. If provided with a 2D list, those lists are copied (this is different to the behavior from the constructor). -
MarkdownTable.from_dicts(dicts: Iterable[Mapping[str, Any]]) -> MarkdownTable::
Initializes the table from an iterable of dictionaries. Every value is saved by callingstr(cell)
.
Only keys from the first dictionary are used; that is any extra key in other dictionaries are ignored. However, if a following dict has a missing key, KeyError is thrown. -
MarkdownTable.from_namedtuples(named_tuples: Iterable[_NamedTupleLike]) -> MarkdownTable:
Initializes the table from an iterable of NamedTuples.
Well, in reality those don't have to be NamedTuples per se; as longs at the objects have a_fields
property and one can iterate over those objects this function works fine.
First object's_fields
property is the header row.
If objects aren't of the same type, ensure all of them have the same amount of fields; otherwise an invalid table is created. -
MarkdownTable.from_serializable(objects: Iterable[_Serializable]) -> MarkdownTable:
This is an extension of from_namedtuples; but instead of iterating over those objects directly, obj.serialize() is used to get the string representations of the cells.
So, as long as objects have the_fields
property and aserialize()
method; this method works fine.
First object's_fields
property is the header row.
Ensure all object's serialize() method yield the same amount of cells, otherwise an invalid table is created.
Exceptions
-
InvalidData: Base exception fort use in table validation. Subclasses
ValueError
. -
NoData: Exception used when a table has absolutely no data; not even a header row. Subclasses
InvalidData
. -
MisalignedRows: Exception used when a table has rows with more/less cells than the header. Subclasses
InvalidData
.
Protocols/Interfaces
-
SupportsWrite[str]: Anything with a write method accepting a string argument. Implemented by the _typeshed module.
-
_NamedTupleLike: Anything with a
_fields
property, which is an iterable of strings representing field names; that is itself iterable. -
_Serializable: Anything with a
_fields
property, which is an iterable of strings representing field names; and with aserialize() -> Iterable[str]
method which returns all the held field values as strings.
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
File details
Details for the file table2md-1.0.0.tar.gz
.
File metadata
- Download URL: table2md-1.0.0.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a214dbac42af24f4a840437bada6af3cba3813ecccce15487f1328747931bfe8 |
|
MD5 | 65916130921db5642a63315526dc2f8f |
|
BLAKE2b-256 | 8028e57d97d2b3877935cf03c6c391b206b58260c85722c1422f31bc16160cf4 |
Provenance
File details
Details for the file table2md-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: table2md-1.0.0-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0ed69deb2a91cb734dfe96911d93271f2d18ffb3978dbe424d832c7f5569aa38 |
|
MD5 | 0c400a448792e9e866680c9154ac44e1 |
|
BLAKE2b-256 | 65c3fae1b9521c2d7e0a9ab1b254347575622b1c4c99156b929563b7743200d3 |