[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-73325":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":17,"stars7d":18,"stars30d":19,"stars90d":16,"forks30d":16,"starsTrendScore":20,"compositeScore":21,"rankGlobal":10,"rankLanguage":10,"license":22,"archived":23,"fork":23,"defaultBranch":24,"hasWiki":25,"hasPages":23,"topics":26,"createdAt":10,"pushedAt":10,"updatedAt":27,"readmeContent":28,"aiSummary":29,"trendingCount":16,"starSnapshotCount":16,"syncStatus":30,"lastSyncTime":31,"discoverSource":32},73325,"tabiew","shshemi\u002Ftabiew","shshemi","A lightweight TUI application to view and query tabular data files, such as CSV, TSV, and parquet.","",null,"Rust",2916,84,11,10,0,8,14,40,24,84.79,"MIT License",false,"main",true,[],"2026-06-12 04:01:09","# Tabiew\n\nTabiew is a lightweight TUI application that allows users to view and query tabular data files, such as CSV, Parquet, Arrow, and ...\n\n![Image Alt text](images\u002Fmain.gif \"Screenshot\")\n\n## Features\n\n- ⌨️ Vim-style keybindings\n- 🛠️ SQL support\n- 📊 Support for CSV, TSV, Parquet, JSON, JSONL, Arrow, FWF, Sqlite, Excel, and Logfmt\n- 🔍 Fuzzy search\n- 📝 Scripting support\n- 🗂️ Multi-table functionality\n- 📈 Plotting\n- 🎨 More than 400 beautiful themes\n\n## Wiki\n\nTabiew started as a humble hobby TUI project for viewing CSV data but has evolved to incorporate various features and improvements from valuable community feedbacks. As the project expanded, so did the need for comprehensive documentation, leading to the creation of the [wiki page](https:\u002F\u002Fgithub.com\u002Fshshemi\u002Ftabiew\u002Fwiki). The wiki offers explanations of features and the best practices to get the most out of Tabiew.\n\n## Installation\n\nThere are various ways to install Tabiew:\n\n### Shell (Linux \u002F macOS)\n\n```bash\ncurl -sS https:\u002F\u002Fraw.githubusercontent.com\u002Fshshemi\u002Ftabiew\u002Fmain\u002Finstall.sh | sh\n```\n\n### Arch Linux\n\nYou can install from the [official repositories](https:\u002F\u002Farchlinux.org\u002Fpackages\u002Fextra\u002Fx86_64\u002Ftabiew\u002F) using [pacman](https:\u002F\u002Fwiki.archlinux.org\u002Ftitle\u002Fpacman):\n```bash\npacman -S tabiew\n```\n\n### Debian-based\n\nDownload the `.deb` package from the [GitHub releases page](https:\u002F\u002Fgithub.com\u002Fshshemi\u002Ftabiew\u002Freleases) and run:\n ```bash\nsudo dpkg -i \u003Cpath_to_package.deb>\n ```\n\n### RPM-based\n\nDownload the `.rpm` package from the [GitHub releases page](https:\u002F\u002Fgithub.com\u002Fshshemi\u002Ftabiew\u002Freleases) and run:\n ```bash\nsudo rpm -i \u003Cpath_to_package.rpm>\n ```\n\n### MacOS\n\nInstalling Tabiew using [Homebrew](https:\u002F\u002Fbrew.sh\u002F) from Homebrew core:\n```bash\nbrew update\nbrew install tabiew\n```\nor tap:\n ```bash\nbrew install shshemi\u002Ftabiew\u002Ftabiew\n ```\n\nNote: Please be aware that installing Tabiew from the tap involves compiling it from the source, which may take some time to complete.\n\n### Cargo\n\nInstalling Tabiew from *Crates.io*:\n ```bash\ncargo install --locked tabiew\n ```\n\n### Build from Source\n\nEnsure you have rustc version 1.80 (or higher) installed. Download the desired source version from the [release page](https:\u002F\u002Fgithub.com\u002Fshshemi\u002Ftabiew\u002Freleases). Extract the downloaded file and navigate into the extracted directory. Then run the following command:\n```bash\ncargo build --release\ncp .\u002Ftarget\u002Frelease\u002Ftw \u003Csystem_or_local_bin_path>\n```\n\n## Usage\n\nStart Tabiew with `tw`\n```bash\ntw \u003Cpath_to_file(s)>\n```\n\nTabiew automatically detects the file format based on the file extension. Supported formats include:\n- **CSV** (`.csv`) - Comma-separated values\n- **TSV** (`.tsv`) - Tab-separated values\n- **Parquet** (`.parquet`, `.pqt`)\n- **JSON** (`.json`)\n- **JSONL** (`.jsonl`) - JSON Lines\n- **Arrow** (`.arrow`)\n- **FWF** (`.fwf`) - Fixed-width format\n- **SQLite** (`.db`, `.sqlite`)\n- **Excel** (`.xls`, `.xlsx`, `.xlsm`, `.xlsb`)\n\nExamples:\n\nOpen various files (format automatically detected):\n```bash\ntw data.csv data.tsv data.arrow\n```\n\nOpen CSV files with custom delimiter (pipe-separated):\n```bash\ntw data.csv --separator '|'\n```\n\nOpen CSV files with custom delimiter and no header row (semicolon-separated):\n```bash\ntw data.csv --separator ';' --no-header\n```\n\nOverride format detection:\n```bash\ntw data.txt -f parquet\n```\n\nDelimiter-separated formats (CSV, TSV, etc):\n```bash\n# Explicitly use CSV format (comma by default, but can use custom delimiter)\ntw data.txt -f csv\ntw data.txt -f csv --separator '|'\n\n# Explicitly use TSV format (always tab-delimited)\ntw data.txt -f tsv\n\n# Use DSV with custom delimiter (equivalent to csv with --separator)\ntw data.txt -f dsv --separator '|'\n```\n\nOpen a URL using curl:\n```bash\ncurl -s \"https:\u002F\u002Fraw.githubusercontent.com\u002Fwiki\u002Fshshemi\u002Ftabiew\u002Fhousing.csv\" | tw\n```\n\n## Useful Keybindings️\n\n|Key Combination|Functionality|\n|-|-|\n| `F1`| Show help with all keyboard shortcuts|\n| `Enter`| Open sheet|\n| `h j k l` or `← ↓ ↑ →`| Navigation |\n| `b` \u002F `w` | Previous \u002F next column|\n| `e` | Toggle Auto-Fit|\n| `Ctrl + u` \u002F `Ctrl + d`| Move half page up\u002Fdown|\n| `Ctrl + b` \u002F `Ctrl + f`| Move full page up\u002Fdown|\n| `Home` or `g`| Move to first row|\n| `End` or `G`| Move to last row|\n| `Ctrl + r`| Reset data frame|\n| `q`| Close |\n| `Q`| Quit Application |\n| `:`| Command Palette|\n| `\u002F`| Fuzzy Search|\n\n## Useful Commands\n\n|Command|Example|Description|\n|-|-|-|\n|`Q` or `query`|`Q SELECT * FROM df`|Query the data in Structured Query Language(SQL). The table name is the file name without extension|\n|`S` or `select`| `S price, area, bedrooms, parking`|Query current data frame for columns\u002Ffunctions|\n|`F` or `filter`| `F price \u003C 20000 AND bedrooms > 4`|Filter current data frame, keeping rows were the condition(s) match|\n|`O` or `order`| `O area`|Sort current data frame by column(s)|\n|`tabn`| `tabn SELECT * FORM user WHERE balance > 1000`|Create a new tab with the given query|\n|`q` or `quit` |`q`| Return to table from sheet view otherwise quit|\n|`schema`| `schema`| Show loaded data frame(s) alongside their path(s)|\n|`reset`| `reset`| Reset the table to the original data frame|\n|`help`| `help`| Show command reference in a new tab|\n\n## Contributing\n\nContributions are welcome! Please fork the repository and submit pull requests with your features and bug fixes.\n\n## Acknowledgments\n\nThis application uses themes from the [Ghostty terminal](https:\u002F\u002Fghostty.org\u002F).\n\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n","Tabiew 是一个轻量级的终端用户界面应用程序，用于查看和查询表格数据文件，如CSV、TSV和Parquet等。它支持多种文件格式，包括JSON、JSONL、Arrow、FWF、SQLite、Excel以及Logfmt，并且具备SQL查询支持、模糊搜索及脚本功能，同时提供了超过400种美观的主题选择。此外，Tabiew还具有多表操作能力和绘图功能，使得数据分析更加直观方便。该工具非常适合需要在命令行环境下高效处理和分析大量结构化数据文件的场景，尤其是对于偏好使用Vim风格快捷键的开发者来说更为友好。",2,"2026-06-11 03:45:02","high_star"]