# quickrest **Repository Path**: mirrors_mcmtroffaes/quickrest ## Basic Information - **Project Name**: quickrest - **Description**: Quick restructured text creator. - **Primary Language**: Unknown - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2026-03-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README quickrest provides methods for easily generating restructured text in Python. For instance:: from quickrest.document import Document doc = Document() doc.add_chapter("Hello") doc.add_paragraph("Just to say hello.") doc.add_section("World") table = doc.add_table(["name", "age"]) table.add_row(["Karl", 31]) table.add_row(["Marcus", 2]) print(doc) will print:: Hello ===== Just to say hello. World ----- ====== === name age ====== === Karl 31 Marcus 2 ====== ===