PyLatex#

pylatex_table#

---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
Cell In[1], line 1
----> 1 from pydicts import pylatex
      2 help(pylatex.pylatex_table)

File /opt/hostedtoolcache/Python/3.10.17/x64/lib/python3.10/site-packages/pydicts/pylatex.py:7
      1 """
      2     This class is used with the pylatex module to generate table from pydicts structures
      3     You only have to import pylatex if you're testing
      4 """
----> 7 from pylatex import LongTabularx, MultiColumn
      8 from pylatex.basic import NewLine
      9 from pylatex.utils import NoEscape, bold, escape_latex

ModuleNotFoundError: No module named 'pylatex'

pylatex_table_with_matched_values#