{"id":19470251,"url":"https://github.com/tommyip/tabled","last_synced_at":"2025-11-19T00:02:37.788Z","repository":{"id":160427601,"uuid":"78967899","full_name":"tommyip/tabled","owner":"tommyip","description":"Tables for Humans","archived":false,"fork":false,"pushed_at":"2017-04-03T16:20:53.000Z","size":98,"stargazers_count":1,"open_issues_count":2,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-08T05:16:01.438Z","etag":null,"topics":["pretty-print","python-3","table-generator"],"latest_commit_sha":null,"homepage":"http://tabled.readthedocs.io","language":"Python","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/tommyip.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2017-01-14T21:33:12.000Z","updated_at":"2018-06-20T18:23:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"54265493-8560-485b-9921-b8feed9ccc0d","html_url":"https://github.com/tommyip/tabled","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tommyip%2Ftabled","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tommyip%2Ftabled/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tommyip%2Ftabled/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tommyip%2Ftabled/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tommyip","download_url":"https://codeload.github.com/tommyip/tabled/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240687503,"owners_count":19841535,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["pretty-print","python-3","table-generator"],"created_at":"2024-11-10T18:56:59.386Z","updated_at":"2025-11-19T00:02:37.679Z","avatar_url":"https://github.com/tommyip.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003cimg src=\"docs/.static/logo.png\" alt=\"tableD\" width=\"50%\" height=\"50%\"\u003e\n\u003c/p\u003e\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://travis-ci.org/tommyip/tabled\"\u003e\n        \u003cimg src=\"https://travis-ci.org/tommyip/tabled.svg?branch=master\" alt=\"Tavis CI\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://coveralls.io/github/tommyip/tabled?branch=master\"\u003e\n        \u003cimg src=\"https://coveralls.io/repos/github/tommyip/tabled/badge.svg?branch=master\" alt=\"Coveralls\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"http://tabled.readthedocs.io/en/latest/?badge=latest\"\u003e\n        \u003cimg src=\"https://readthedocs.org/projects/tabled/badge/?version=latest\" alt=\"Read The Docs\"\u003e\n    \u003c/a\u003e\n    \u003cimg src=\"https://img.shields.io/badge/license-MIT-blue.svg\" alt=\"MIT license\"\u003e\n\u003c/p\u003e\n\n# tableD: *Tables for Humans?*\n\n**tableD** pretty prints your data in a tabular format. With its clean and\nsimple API, you can generate fancy tables in no time! And did I mention it is\nextremely flexible and configurable?\n\nQuick start:\n```python\n\u003e\u003e\u003e headings = ['x', 'f(x) = x^2', 'f(x) = x^x']\n\u003e\u003e\u003e data = [[x, x**2, x**x] for x in range(1, 11)]\n\n# Generate table!\n\u003e\u003e\u003e tabled.new(headings, data, style='terminal').show()\n╔════╦════════════╦═════════════╗\n║ x  ║ f(x) = x^2 ║ f(x) = x^x  ║\n╠════╬════════════╬═════════════╣\n║ 1  ║ 1          ║ 1           ║\n║ 2  ║ 4          ║ 4           ║\n║ 3  ║ 9          ║ 27          ║\n║ 4  ║ 16         ║ 256         ║\n║ 5  ║ 25         ║ 3125        ║\n║ 6  ║ 36         ║ 46656       ║\n║ 7  ║ 49         ║ 823543      ║\n║ 8  ║ 64         ║ 16777216    ║\n║ 9  ║ 81         ║ 387420489   ║\n║ 10 ║ 100        ║ 10000000000 ║\n╚════╩════════════╩═════════════╝\n```\n\nFull documentation is available at [Read the Docs][docs].\n\n[docs]: http://tabled.readthedocs.io/en/latest/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftommyip%2Ftabled","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftommyip%2Ftabled","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftommyip%2Ftabled/lists"}