{"id":30733424,"url":"https://github.com/pdmlab/xltui","last_synced_at":"2025-09-03T18:17:11.527Z","repository":{"id":312146754,"uuid":"1045815962","full_name":"PDMLab/xltui","owner":"PDMLab","description":"Minimal Excel Terminal UI (TUI)","archived":false,"fork":false,"pushed_at":"2025-08-28T21:21:22.000Z","size":366,"stargazers_count":11,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-29T01:38:29.096Z","etag":null,"topics":["excel","terminal","terminal-ui"],"latest_commit_sha":null,"homepage":"","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/PDMLab.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,"zenodo":null}},"created_at":"2025-08-27T18:49:34.000Z","updated_at":"2025-08-28T21:21:25.000Z","dependencies_parsed_at":"2025-08-29T01:38:32.227Z","dependency_job_id":"38fde18f-6c47-47c0-870b-c44cb03fedaa","html_url":"https://github.com/PDMLab/xltui","commit_stats":null,"previous_names":["pdmlab/xltui"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/PDMLab/xltui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PDMLab%2Fxltui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PDMLab%2Fxltui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PDMLab%2Fxltui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PDMLab%2Fxltui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PDMLab","download_url":"https://codeload.github.com/PDMLab/xltui/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PDMLab%2Fxltui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273487832,"owners_count":25114625,"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","status":"online","status_checked_at":"2025-09-03T02:00:09.631Z","response_time":76,"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":["excel","terminal","terminal-ui"],"created_at":"2025-09-03T18:17:03.042Z","updated_at":"2025-09-03T18:17:09.873Z","avatar_url":"https://github.com/PDMLab.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# xltui - minimal Terminal UI for Excel files\n\nMinimal Excel Terminal UI (TUI) inspired by TUIs like\n\n* [doxx](https://github.com/bgreenwell/doxx)\n* [lazysql](https://github.com/jorgerojas26/lazysql)\n\n## Status\n\nThis is the very beginning of this little project. Right now it's more of a CLI to explore some ideas and concepts.\n\nWhat you can do already:\n\nOpen a `.xslx` file and render a particular sheet as a table.\n\n![](assets/screenshot-xltui-helloworld.png)\n\nOpen a `.xlsx` file and render it as a tree.\n\n![](assets/screenshot-xltui-tree.png)\n\nMore options:\n\n```bash\nxltui render --file sample.xlsx\nxltui render --file sample.xlsx --sheet People --style table\nxltui render --file sample.xlsx --sheet People --style tree --group-by Department\nxltui render --file sample.xlsx --sheet-index 1 --columns Name,Email,Dept\nxltui render --file sample.xlsx --json\nxltui render --file sample.xslx --json --columns Name,Email\n```\n\nThe `--json` option can be useful if you want to process the data e.g. using `jq`:\n\n```bash\n# this will export a single column \"Amount\" and jq will transform the array to an array of strings:\nxltui render --file HelloWorld.xlsx --json --columns Amount | jq -c '[ .[] | .[] | to_entries[] | (.value // \"\") | tostring ]' \n```\n\n## Installing\n\nYou can download the binaries from the [Releases](https://github.com/PDMLab/xltui/releases) or you can get the `.deb` files from [here](https://github.com/dariogriffo/xltui-debian/releases). Thank you [@dariogriffo](https://github.com/dariogriffo) for creating and hosting the debs!\n\n### Installing / updating on Ubuntu\n\n```bash\njson=$(curl -s https://api.github.com/repos/PDMLab/xltui/releases/latest) \u0026\u0026 tag=$(echo \"$json\" | grep -m1 '\"tag_name\":' | cut -d '\"' -f4) \u0026\u0026 echo \"Installing xltui $tag...\" \u0026\u0026 url=$(echo \"$json\" | grep \"browser_download_url\" | grep \"linux-x64.*tar.gz\" | cut -d '\"' -f4) \u0026\u0026 [ -n \"$url\" ] \u0026\u0026 curl -L \"$url\" | tar -xz \u0026\u0026 mkdir -p ~/.local/bin \u0026\u0026 mv xltui ~/.local/bin/ \u0026\u0026 echo \"xltui $tag installed to ~/.local/bin\"\n```\n\n### Installling on Debian\n\nFollow the instructions to add the repository on [https://debian.griffo.io](https://debian.griffo.io), then run:\n\n```bash\nsudo apt update\nsudo apt install xltui\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpdmlab%2Fxltui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpdmlab%2Fxltui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpdmlab%2Fxltui/lists"}