Functions
craftable.get_table
Primary function called to generate a table string.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value_rows
|
Iterable[Iterable[Any]]
|
A collection of rows, where each row is a collection of values. This is required. However, a default message of "No data to display" will be shown if the collection is empty or None. |
required |
header_row
|
Iterable[Any] | None
|
(optional) A collection of header column names. Defaults to None. |
None
|
style
|
TableStyle
|
(optional) A TableStyle object defining the table's appearance. Defaults to NoBorderScreenStyle. |
NoBorderScreenStyle()
|
col_defs
|
Iterable[str] | Iterable[ColDef] | ColDefList | None
|
(optional) A collection of column definitions to control width, alignment, etc. for data rows. Defaults to left aligned, auto-sized columns. |
None
|
header_defs
|
Iterable[str] | Iterable[ColDef] | ColDefList | None
|
(optional) A collection of column definitions for the header row. If not provided, defaults to center-aligned columns with the same widths as col_defs. |
None
|
table_width
|
int
|
(optional) Desired total width of the table. Will be automatically calculated if not specified. Defaults to 0. |
0
|
lazy_end
|
bool
|
(optional) If True, omits the right border of the table. Defaults to False. |
False
|
separate_rows
|
bool
|
(optional) If True, adds a separator line between each row. Defaults to False. |
False
|
preprocessors
|
PreprocessorCallbackList | None
|
(optional) List of per-column callbacks applied before formatting
and sizing. Each entry should be a callable of the form
|
None
|
postprocessors
|
PostprocessorCallbackList | None
|
(optional) List of per-column callbacks applied after formatting,
sizing, and wrapping. Each entry should be a callable of the form
|
None
|
none_text
|
str
|
(optional) Text to display for None values. Defaults to empty string. |
''
|
Behavior
- Validates that the style supports string output (raises ValueError if not).
- If value_rows is empty, returns a table with "No data to display" message.
- Converts value_rows to a list of lists for consistent processing.
- Calculates column widths based on content and table_width constraints.
- Generates column definitions (col_defs) from content if not provided.
- Generates header definitions (header_defs) from col_defs if not provided, defaulting to center-aligned headers.
- Renders the table header if header_row is provided or style.force_header is True.
- Renders each data row, optionally adding separator lines between rows if separate_rows is True.
- Renders the bottom border if the style includes one.
- Applies preprocessors before formatting and postprocessors after formatting.
Returns:
| Type | Description |
|---|---|
str
|
A formatted string representing the complete table, including all |
str
|
borders, header, data rows, and separators as defined by the style. |
Source code in src/craftable/craftable.py
847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 | |
craftable.export_table
Render the table and optionally write it to a file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value_rows
|
Iterable[Iterable[Any]]
|
A collection of rows, where each row is a collection of values. |
required |
header_row
|
Iterable[Any] | None
|
(optional) A collection of header column names. Defaults to None. |
None
|
style
|
TableStyle
|
(optional) A TableStyle object defining the table's appearance and export format. Defaults to NoBorderScreenStyle. |
NoBorderScreenStyle()
|
col_defs
|
Iterable[str] | Iterable[ColDef] | ColDefList | None
|
(optional) A collection of column definitions to control width, alignment, formatting, etc. for data rows. Defaults to left aligned, auto-sized columns. |
None
|
header_defs
|
Iterable[str] | Iterable[ColDef] | ColDefList | None
|
(optional) A collection of column definitions for the header row. If not provided, defaults to center-aligned columns with the same widths as col_defs. Used to control header alignment in exported files. |
None
|
preprocessors
|
PreprocessorCallbackList | None
|
(optional) List of per-column callbacks applied before formatting
and sizing. Each entry should be a callable of the form
|
None
|
postprocessors
|
PostprocessorCallbackList | None
|
(optional) List of per-column callbacks applied after formatting,
sizing, and wrapping. Each entry should be a callable of the form
|
None
|
none_text
|
str
|
(optional) Text to display for None values. Defaults to empty string. |
''
|
file
|
str | Path | IO[str] | IO[bytes] | None
|
(optional) File path (str or Path) or file-like object (IO) to write the output. If None, returns the rendered content as a string. Defaults to None. |
None
|
encoding
|
str
|
(optional) Character encoding for text output. Only used when writing text content to a file path. Defaults to "utf-8". |
'utf-8'
|
Behavior
- If the style provides a write_table(..., file) method and a file is given, delegate writing to the style and return the provided file path/handle.
- Else, if the style provides render_table(...), render to a string (or bytes). If a file is provided, write it; otherwise return the rendered content.
- Else, fall back to craftable's text renderer via get_table().
Returns:
| Type | Description |
|---|---|
str | Path | None
|
|
str | Path | None
|
|
str | Path | None
|
|
Source code in src/craftable/craftable.py
1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 | |
craftable.get_table_row
Generate a string for a single table row.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
values
|
list[Any]
|
A list of values. |
required |
style
|
TableStyle
|
(optional) A TableStyle object defining the table's appearance. Defaults to NoBorderScreenStyle. |
NoBorderScreenStyle()
|
col_defs
|
list[str] | list[ColDef] | ColDefList | None
|
(optional) Column definitions to control width, alignment, etc. If not provided, generates default left-aligned columns based on values. |
None
|
table_width
|
int
|
(optional) Desired total width of the table. If 0, uses terminal width when style.terminal_style is True. Defaults to 0. |
0
|
lazy_end
|
bool
|
(optional) If True, omits the right border of the table. Defaults to True. |
True
|
preprocessors
|
PreprocessorCallbackList | None
|
(optional) List of per-column callbacks applied before formatting
and sizing. Each entry should be a callable of the form
|
None
|
postprocessors
|
PostprocessorCallbackList | None
|
(optional) List of per-column callbacks applied after formatting,
sizing, and wrapping. Each entry should be a callable of the form
|
None
|
none_text
|
str
|
(optional) Text to display for None values. Defaults to empty string. |
''
|
Behavior
- If col_defs is not provided, generates default left-aligned column definitions based on the values.
- Applies preprocessors to transform values before formatting.
- Formats each value according to its column definition.
- Applies postprocessors to transform formatted text.
- Renders the row using the specified table style.
Returns:
| Type | Description |
|---|---|
str
|
A formatted string representing a single table row, including borders |
str
|
and cell padding as defined by the style. |
Source code in src/craftable/craftable.py
craftable.get_table_header
Generate a string for the header of a table.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
header_cols
|
list[str]
|
A list of header column names. |
required |
style
|
TableStyle
|
(optional) A TableStyle object defining the table's appearance. Defaults to NoBorderScreenStyle. |
NoBorderScreenStyle()
|
header_defs
|
Iterable[str] | Iterable[ColDef] | ColDefList | None
|
(optional) Column definitions for the header row. If not provided, defaults to column definitions generated from header_cols. |
None
|
col_defs
|
Iterable[str] | Iterable[ColDef] | ColDefList | None
|
(optional) Column definitions for the rest of the table rows. Only required for styles that have an alignment character (e.g., Markdown). If not provided, uses the same as header_defs. |
None
|
table_width
|
int
|
(optional) Desired total width of the table. Will be automatically calculated if not provided. Defaults to 0. |
0
|
lazy_end
|
bool
|
(optional) If True, omits the right border of the table. Defaults to True. |
True
|
Behavior
- If header_defs is not provided, generates default column definitions from header_cols.
- If col_defs is not provided, uses a copy of header_defs.
- Adjusts column definitions to fit the specified or calculated table width.
- Renders the top border if the style includes one.
- Renders the header row with the specified header definitions.
- Renders the bottom border (separator between header and data rows).
- For styles with alignment characters (e.g., Markdown), uses col_defs to determine column alignment indicators in the separator line.
Returns:
| Type | Description |
|---|---|
str
|
A formatted string representing the table header, including top border, |
str
|
header row, and header separator line as defined by the style. |
Source code in src/craftable/craftable.py
728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 | |