{"library":"markdowntable","title":"markdowntable","description":"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.","language":"python","status":"active","last_verified":"Sat May 09","install":{"commands":["pip install markdowntable"],"cli":null},"imports":["import markdowntable"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import markdowntable\n\ntable = markdowntable.create(\n    header=[\"Name\", \"Age\", \"City\"],\n    rows=[\n        [\"Alice\", 30, \"New York\"],\n        [\"Bob\", 25, \"London\"],\n        [\"Charlie\", 35, \"Paris\"]\n    ]\n)\nprint(table)","lang":"python","description":"Create a simple markdown table with header and rows.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}