mylatextable
This package intends to make it easier to create LaTeX-formated tables from tabular data that is available in Python.
A typical use case would be
from mylatextable import MyLatexTable
header = [...] # Define header fields
table = MyLatexTable(header_fields=header, use_booktabs=True)
rows = .... # create a list of rows according to your logic
for row in rows:
table.add_row(row)
print(table.get_latex()) # display LaTeX code
Release
To release a new version, update the version number in pyproject.toml and enter the following commands.
python -m build .
python -m twine upload dist/*
This package is available at https://pypi.org/project/mylatextable/.
Release files for mylatextable 0.0.3
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| mylatextable-0.0.3.tar.gz | 4.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| mylatextable-0.0.3-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 10.0 kB
Release files / mylatextable-0.0.3.tar.gz
| Download URL | mylatextable-0.0.3.tar.gz |
|---|---|
| Size | 4.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
b696df44940d5bc43fa7c1460fe5e712b4c370306feda744a63d1bf42c3293d6
|
|
BLAKE2b-256 checksum How to use checksums |
e4f930bf706ff89c01af08cea06dbfdb392e3a9ce8c4b02764ff77799a9f3a2c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.0.1 CPython/3.13.1
|
Release files / mylatextable-0.0.3-py3-none-any.whl
| Download URL | mylatextable-0.0.3-py3-none-any.whl |
|---|---|
| Size | 5.7 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
a1ffb47016d9a198d3c67e41e87f61797f7374ce421c6be43bc8200901051dba
|
|
BLAKE2b-256 checksum How to use checksums |
8b177ddce44ffd68867a45181558f8ccd39a35d5d8af46909195ce573ca84eca
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.0.1 CPython/3.13.1
|