Mdtable
Convert CSV files into Markdown formatted tables
Install / Use
/learn @mzjp2/MdtableREADME
:clipboard: mdtable
mdtable is a Python built command line interface that lets you convert csv files into Markdown formatted tables easily. It also provides a Python API to use for your projects.
Installation
Run pip install mdtable and check that the latest version is current installed by running mdtable —version.
Usage
>>> mdtable [OPTIONS] INPUT_FILE
The options available are:
-a, --aligns TEXT Comma seperated list of 'l,r,c'
-p, --padding INTEGER Padding for raw Markdown Table formatting
-s, --save TEXT Path to save formatted markdown to
--delimiter TEXT Delimiter character in csv
--quotechar TEXT Quote character in csv
--escapechar TEXT Escape character in csv
--writemode TEXT Python write mode, e.g w+, w, a, a+
--version Show the version and exit.
--help Show this message and exit.
Example:
Suppose you have a file input.csv like so:
Name,Department,Birthday Month
John Smith,Accounting,November
Erica Meyers,IT,March
Zain Patel,Engineering,June
Christopher Smith,Engineering,July
Kiseki Hirakawa,Human Resources,February
Running mdtable input.csv results in:
| Name | Department | Birthday Month |
| ----------------- | --------------- | -------------- |
| John Smith | Accounting | November |
| Erica Meyers | IT | March |
| Zain Patel | Engineering | June |
| Christopher Smith | Engineering | July |
| Kiseki Hirakawa | Human Resources | February |
which looks like:
| Name | Department | Birthday Month | | ----------------- | --------------- | -------------- | | John Smith | Accounting | November | | Erica Meyers | IT | March | | Zain Patel | Engineering | June | | Christopher Smith | Engineering | July | | Kiseki Hirakawa | Human Resources | February |
API
[soon] more documentation
Example:
from mdtable import MDTable
markdown = MDTable('in.csv')
markdown_string_table = markdown.get_table()
markdown.save_table('out.csv')
Current Features
-
[x] Ability to specify alignments, by providing a comma seperated string of alignments values (either 'l', 'r' or 'c') to
mdtables —aligns [ALIGNS] INPUT_FILE, say for examplemdtables —aligns c,c,l input.csv, there must be as many alignments characters as there are tables. -
[x] Ability to save output to a markdown file (and specify the writing mode) by providing the path to the file you wish to save to
mdtables —save [SAVE_FILE] INPTUT_FILEsay for examplemdtables —save output.md input.csv -
[x] Provide custom delimiter, quotation and escape characters for reading in your csv file. This is done by providing the character to
—delimiter, —quotechar, —escapehcarrespectively. -
[x] Add a padding option to make table border padding customisable (in the raw output). This can now be done. Running
mdtable input.csv -p 3returns| Name | Department | Birthday Month | | ----------------- | --------------- | -------------- | | John Smith | Accounting | November | | Erica Meyers | IT | March | | Zain Patel | Engineering | June | | Christopher Smith | Engineering | July | | Kiseki Hirakawa | Human Resources | February | -
[ ]
Future Features
- [ ] Implement a centering flag (for raw output) to prettify the output if required
- [ ] Enable 0 padding
- [ ] Add documentation for the API
- [ ] Implement tests for
delimeters``, quotecharsandescapechars.
Related Skills
node-connect
349.9kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
109.8kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
349.9kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
349.9kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
