A Python library for creating Markdown tables easily. Version 6.0.0 supports Python 3.7+ and provides a simple API to generate table strings. Earlier versions had different import paths and API.
pip install markdowntableNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Create a simple markdown table with header and rows.
Use `import markdowntable` and call `markdowntable.create()` instead.
Migrate to `import markdowntable` and use `markdowntable.create()`.
Ensure each row is a list of values matching the header length.
Use `import markdowntable` and `table = markdowntable.create(...)`.
Provide both `header` (list of strings) and `rows` (list of lists).
No dependency data recorded yet.