{"id":26831057,"url":"https://github.com/canadaluke888/speedtable","last_synced_at":"2026-03-01T03:03:12.227Z","repository":{"id":283926648,"uuid":"953319355","full_name":"canadaluke888/speedtable","owner":"canadaluke888","description":"Ultra-fast terminal table renderer written in C","archived":false,"fork":false,"pushed_at":"2025-05-09T03:22:19.000Z","size":343,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-20T17:03:35.237Z","etag":null,"topics":["c","data","datasets","fast","python","python-wrapper","python3","tables"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/speedtable/","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/canadaluke888.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-03-23T04:27:22.000Z","updated_at":"2025-06-15T23:02:17.000Z","dependencies_parsed_at":null,"dependency_job_id":"afe8b92c-b116-4e69-91a5-3ca40260aac5","html_url":"https://github.com/canadaluke888/speedtable","commit_stats":null,"previous_names":["canadaluke888/speedtable"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/canadaluke888/speedtable","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/canadaluke888%2Fspeedtable","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/canadaluke888%2Fspeedtable/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/canadaluke888%2Fspeedtable/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/canadaluke888%2Fspeedtable/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/canadaluke888","download_url":"https://codeload.github.com/canadaluke888/speedtable/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/canadaluke888%2Fspeedtable/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29959284,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T01:47:18.291Z","status":"online","status_checked_at":"2026-03-01T02:00:07.437Z","response_time":124,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["c","data","datasets","fast","python","python-wrapper","python3","tables"],"created_at":"2025-03-30T14:18:55.250Z","updated_at":"2026-03-01T03:03:12.216Z","avatar_url":"https://github.com/canadaluke888.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ⚡ speedtable\n\n**speedtable** is an ultra-fast, C-based terminal table renderer for Python.  \nDesigned for large datasets and low-latency rendering — with beautiful Rich-style Unicode output.\n\n\u003e 💡 Perfect for CLI tools, dataset previews, or any place you need fast + styled tables.\n\n---\n\n## 🚀 Features\n\n- Blazing-fast C implementation 🔥  \n- Unicode box-style table formatting (like Rich’s `HEAVY_HEAD`)  \n- Bold, colored headers with optional column type labels  \n- Customizable:\n  - Header color  \n  - Border color  \n  - Body text color  \n  - Type label color  \n  - Title text and color (italicized, centered above the table)\n\n---\n\n## 📦 Installation\n\n```bash\npip install speedtable\n```\n\n---\n\n## 🧪 Example Usage\n\n```python\nimport speedtable\n\ntable_data = {\n    \"columns\": [\n        {\"name\": \"ID\", \"type\": \"int\"},\n        {\"name\": \"Name\", \"type\": \"str\"},\n        {\"name\": \"Age\", \"type\": \"int\"}\n    ],\n    \"rows\": [\n        {\"ID\": 1, \"Name\": \"Luke\", \"Age\": 21},\n        {\"ID\": 2, \"Name\": \"Joe\", \"Age\": 45},\n        {\"ID\": 3, \"Name\": \"Alice\", \"Age\": 56}\n    ]\n}\n\nprint(speedtable.render_table(\n    table_data,\n    header_color=\"green\",\n    border_color=\"magenta\",\n    body_color=\"white\",\n    type_color=\"red\",\n    title_text=\"Test Table\",\n    title_color=\"cyan\"\n))\n```\n\n---\n## 📷 Output\n![SpeedTable Demo](https://raw.githubusercontent.com/canadaluke888/speedtable/master/assets/speedtable-demo.png)\n\n---\n\n## 🎨 Supported Color Names\n\n| Name             | Description               |\n|------------------|---------------------------|\n| `black`          | Standard black            |\n| `red`            | Standard red              |\n| `green`          | Standard green            |\n| `yellow`         | Standard yellow           |\n| `blue`           | Standard blue             |\n| `magenta`        | Standard magenta          |\n| `cyan`           | Standard cyan             |\n| `white`          | Standard white            |\n\n\u003e ✨ Headers are always bold, and titles are always italicized.\n\n---\n\n## 💡 Why speedtable?\n\nThe Python `rich` library is beautiful, but may be too slow for rendering large tables in CLI environments.  \n`speedtable` gives you the same polished aesthetic — at native speed.\n\n---\n\n## 📄 License\n\nMIT © [Luke Canada](https://github.com/canadaluke888)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcanadaluke888%2Fspeedtable","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcanadaluke888%2Fspeedtable","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcanadaluke888%2Fspeedtable/lists"}