Skip to main content

Simple way to create HTML tables with support for rowspan and colspan attributes.

Project description

simple_html_table

Simple way to create HTML tables with support for rowspan and colspan attributes.

Usage

simple_html_table defines three classes that represent HTML tables, rows and cells respectively. To use the module, create a Table instance and pass it a 2D numpy array of strings, or a callable that will take Cell objects and return strings.:

from simple_html_table import Table

contents = [
    ["Head 1", "Head 2", "Head 3", "Head 4"],
    ["(1,1)", "(1,2)", "(1,3)", "(1,4)"],
    ["(2,1)", "(2,2)", "(2,3)", "(2,4)"],
]

table = Table((3, 4), table_contents=np.array(contents))

table[1, 1].colspan = 2
table[0, 0].rowspan = 3
table[0, 1].attrs_dict.update({"style": "{ background: red; }"})
table[0].header = True
for cell in table[0]:
    cell.classes = "table_th"

result = table.render()
print(result,"\n")

def content_func(cell: Cell) -> str:
    """Callback function to fill in the table."""
    row, col = cell.location
    return contents[row][col]

table2 = Table((3, 4), table_contents=content_func)
result = table2.render()
print(result)

Output

<table class='html_table'>
	<tr class='html_tr'>
		<th class='table_th' rowspan=3>Head 1</th>
		<th class='table_th' style='{ background: red; }'>Head 2</th>
		<th class='table_th'>Head 3</th>
		<th class='table_th'>Head 4</th>
	</tr>
	<tr class='html_tr'>
		<td class='html_td' colspan=2>(1,2)</td>
		<td class='html_td'>(1,4)</td>
	</tr>
	<tr class='html_tr'>
		<td class='html_td'>(2,2)</td>
		<td class='html_td'>(2,3)</td>
		<td class='html_td'>(2,4)</td>
	</tr>
</table>

<table class='html_table'>
	<tr class='html_tr'>
		<td class='html_td'>Head 1</td>
		<td class='html_td'>Head 2</td>
		<td class='html_td'>Head 3</td>
		<td class='html_td'>Head 4</td>
	</tr>
	<tr class='html_tr'>
		<td class='html_td'>(1,1)</td>
		<td class='html_td'>(1,2)</td>
		<td class='html_td'>(1,3)</td>
		<td class='html_td'>(1,4)</td>
	</tr>
	<tr class='html_tr'>
		<td class='html_td'>(2,1)</td>
		<td class='html_td'>(2,2)</td>
		<td class='html_td'>(2,3)</td>
		<td class='html_td'>(2,4)</td>
	</tr>
</table>

Table and Row objects implement mutable sequence interfaces, so can be indexed. A Table will except being indexed with a single integer to return a Row or with a tuple of two integers to return a Cell. A Row can be indexed to return Cell instances.

Cells know which Row they belong to and Tows know which Table they belong to. This means copying Cells and Rows will probably mess up unless you explicitly reset the pointers.

Colpan and Rowpans are implemented simply by storing references to the same Cell objects within the Row objects - as a result, it is always possible to index the Table, but the Cell returned may think it belongs to a different row and column within the table.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

simple_html_table-0.1.0.tar.gz (9.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

simple_html_table-0.1.0-py3-none-any.whl (7.9 kB view details)

Uploaded Python 3

File details

Details for the file simple_html_table-0.1.0.tar.gz.

File metadata

  • Download URL: simple_html_table-0.1.0.tar.gz
  • Upload date:
  • Size: 9.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/6.0.0 pkginfo/1.9.6 requests/2.28.1 requests-toolbelt/0.9.1 tqdm/4.65.0 CPython/3.10.9

File hashes

Hashes for simple_html_table-0.1.0.tar.gz
Algorithm Hash digest
SHA256 358234ae2d9bfcbe2f567e3c8b5c0879bd383265c1043af94e4574bd6d270b45
MD5 8703b9667d0deeb7d856c5481c1c0d5e
BLAKE2b-256 0c04cb02010077daa8d22c70de02dcf7aaca6e8d442fcdfa9bfce4d77cc1d893

See more details on using hashes here.

File details

Details for the file simple_html_table-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: simple_html_table-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 7.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/6.0.0 pkginfo/1.9.6 requests/2.28.1 requests-toolbelt/0.9.1 tqdm/4.65.0 CPython/3.10.9

File hashes

Hashes for simple_html_table-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c99567ba0502a03489195e36c27a56bba7cc72b082611447b4dc4821588eee75
MD5 76aff15ea33d29a5bacac8f3dc0b3606
BLAKE2b-256 91af50aa90f44beb6924b7122f4ee52a93dfb4e79667c2c5c5e4bf5c34c7e4b8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page