Skip to main content

Utilities to convert python data to latex tables.

Project description

CI Codecov Code style: black

pytextable creates well-formatted latex tables with booktabs support in pure python.

pytextable is highly-configurable, you decide how your table should look.

pytextable is small, fast and requires nothing but python>=3.6.

Quick Start Guide

  1. Install

    pip install pytextable
  2. Import

    import pytextable
  3. Create a latex table from your data :)

    pytextable.write(data, "table.tex")

Example

import pytextable

# This is usually your 2d numpy array or any sequence of sequences
DATA = [[1.2346, 1, 1.2346], [1.2346, 1.2346, 1.2346], [1.2346, 1.2346, 1.2346]]

>>> pytextable.tostring(
    DATA,
    fmt=".3f",
    header=("first", "second", "third"),
    caption="My fancy pytextable",
    label="tab:pytextable",
)
r"""
\begin{table}
    \centering
    \caption{My fancy pytextable}
    \label{tab:pytextable}
    \begin{tabular}{ccc}
        \toprule
        first & second & third \\
        \midrule
        1.235 & 1.000 & 1.235 \\
        1.235 & 1.235 & 1.235 \\
        1.235 & 1.235 & 1.235 \\
        \bottomrule
    \end{tabular}
\end{table}
"""

# To write to file use pytextable.write(DATA, filename)
>>> pytextable.write(DATA, "table.tex", fmt=".3f", ...)

License

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.

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

pytextable-0.2.1.tar.gz (20.1 kB view details)

Uploaded Source

Built Distribution

pytextable-0.2.1-py3-none-any.whl (18.5 kB view details)

Uploaded Python 3

File details

Details for the file pytextable-0.2.1.tar.gz.

File metadata

  • Download URL: pytextable-0.2.1.tar.gz
  • Upload date:
  • Size: 20.1 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.2 CPython/3.9.6

File hashes

Hashes for pytextable-0.2.1.tar.gz
Algorithm Hash digest
SHA256 c93cf66bab3b10f5bc2b1b30f6bbd5dd5d51d024cee00e64ec7efdb5e1367b35
MD5 ff995ed5987cea50e5c3edede9d9499c
BLAKE2b-256 ee3014adb3bfab29e7cbd8c0bbc9d2879c3ed9f065e9256fd2559f39e666c58d

See more details on using hashes here.

File details

Details for the file pytextable-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: pytextable-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 18.5 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.2 CPython/3.9.6

File hashes

Hashes for pytextable-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 a51d0c627f3a502e67e734785d8d35bbbcadf49db16e80fe2e05ebe48bee5278
MD5 685166cc7f9c30c3edf748350416023a
BLAKE2b-256 67f6a8c2aaa172e3af24331ba5a0b358e4eb70788b9d72629465e7771705df1a

See more details on using hashes here.

Supported by

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