{"id":8073044,"url":"https://github.com/selenebun/rtab","last_synced_at":"2025-07-23T18:31:00.508Z","repository":{"id":53899630,"uuid":"361159590","full_name":"selenebun/rtab","owner":"selenebun","description":"A command-line tool for generating tables from CSV.","archived":true,"fork":false,"pushed_at":"2021-06-06T15:41:36.000Z","size":26,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-07T12:04:33.049Z","etag":null,"topics":["csv","table"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/selenebun.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}},"created_at":"2021-04-24T12:44:59.000Z","updated_at":"2024-11-02T08:24:40.000Z","dependencies_parsed_at":"2022-08-13T03:40:47.239Z","dependency_job_id":null,"html_url":"https://github.com/selenebun/rtab","commit_stats":null,"previous_names":["selenebun/rtab","rsaihe/rtab"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/selenebun/rtab","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/selenebun%2Frtab","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/selenebun%2Frtab/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/selenebun%2Frtab/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/selenebun%2Frtab/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/selenebun","download_url":"https://codeload.github.com/selenebun/rtab/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/selenebun%2Frtab/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266731769,"owners_count":23975897,"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-07-23T02:00:09.312Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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":["csv","table"],"created_at":"2024-04-16T23:15:41.490Z","updated_at":"2025-07-23T18:31:00.165Z","avatar_url":"https://github.com/selenebun.png","language":"Rust","funding_links":[],"categories":["csv"],"sub_categories":[],"readme":"# rtab\n\nA command-line tool for generating tables from CSV.\n\n## Examples\n\nAll of the below examples will use the following CSV file as input.\n\n```csv\n,Labial,Alveolar,Dorsal\nPlosive,p,t,k\nNasal,m,n,\nFricative,,s,\nApproximant,w,l,j\n```\n\nThe basic style can be specified with the `--style` option, defaulting to\n`basic`.\n\n```\n$ rtab input.csv\n            Labial Alveolar Dorsal\nPlosive     p      t        k\nNasal       m      n\nFricative          s\nApproximant w      l        j\n\n$ rtab input.csv --style fancy\n┌─────────────┬────────┬──────────┬────────┐\n│             │ Labial │ Alveolar │ Dorsal │\n│ Plosive     │ p      │ t        │ k      │\n│ Nasal       │ m      │ n        │        │\n│ Fricative   │        │ s        │        │\n│ Approximant │ w      │ l        │ j      │\n└─────────────┴────────┴──────────┴────────┘\n```\n\nAdditional spacing can be added with the `--spaces` (or `-s`) option.\n\n```\n$ rtab input.csv -s2\n             Labial  Alveolar  Dorsal\nPlosive      p       t         k\nNasal        m       n\nFricative            s\nApproximant  w       l         j\n```\n\nThe `--spaces` option works similarly for the `fancy` style.\n\nThe `fancy` style can be further customized with the `--headers` and\n`--separators` flags.\n\n```\n$ rtab input.csv --style fancy --headers\n┌─────────────┬────────┬──────────┬────────┐\n│             │ Labial │ Alveolar │ Dorsal │\n├─────────────┼────────┼──────────┼────────┤\n│ Plosive     │ p      │ t        │ k      │\n│ Nasal       │ m      │ n        │        │\n│ Fricative   │        │ s        │        │\n│ Approximant │ w      │ l        │ j      │\n└─────────────┴────────┴──────────┴────────┘\n\n$ rtab input.csv --style fancy --separators\n┌─────────────┬────────┬──────────┬────────┐\n│             │ Labial │ Alveolar │ Dorsal │\n├─────────────┼────────┼──────────┼────────┤\n│ Plosive     │ p      │ t        │ k      │\n├─────────────┼────────┼──────────┼────────┤\n│ Nasal       │ m      │ n        │        │\n├─────────────┼────────┼──────────┼────────┤\n│ Fricative   │        │ s        │        │\n├─────────────┼────────┼──────────┼────────┤\n│ Approximant │ w      │ l        │ j      │\n└─────────────┴────────┴──────────┴────────┘\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fselenebun%2Frtab","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fselenebun%2Frtab","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fselenebun%2Frtab/lists"}