An interactive TUI for piped data.
Project description
PipeViewApp
An interactive TUI (Terminal User Interface) for piped data.
PipeViewApp allows you to instantly browse, filter, and inspect JSON, CSV, and plain text data directly from your command line, turning static output into a fully interactive experience.
Features
- Interactive TUI: No more chaining
grep,awk, andjq. Explore your data in a user-friendly interface. - Real-time Filtering: Instantly filter thousands of rows just by typing.
- Auto-Format Detection: Intelligently parses JSON, CSV, and line-delimited JSON (LDJSON) without any configuration.
- Cross-Platform: Works on Linux, macOS, and Windows.
- Lightweight & Fast: Starts instantly and handles large amounts of data smoothly.
Installation
The recommended way to install PipeViewApp is from PyPI using pip.
pip install pipeviewapp
How to Use
PipeViewApp uses a simple, two-step workflow to ensure maximum compatibility and interactivity across all terminal environments.
Step 1: Capture Data with pipeview-cache
Pipe any command's output into the pipeview-cache command. This captures the data and saves it to a temporary cache file.
Examples:
## On Linux/macOS
# JSON
curl -s "https'://jsonplaceholder.typicode.com/todos" | pipeview-cache
# csv
cat data.csv | pipeview-cache
# plain-text
cat data.log | pipeview-cache
## On Windows PowerShell
# JSON
(Invoke-WebRequest "https'://jsonplaceholder.typicode.com/todos").Content | pipeview-cache
# csv
Get-Content .\data.csv | pipeview-cache
# plain-text
Get-Content .\data.log | pipeview-cache
Step 2: View Data with pipeview
Now, simply run the pipeview command to launch the interactive UI. It will automatically load the data you just captured.
pipeview
The interactive TUI will launch, allowing you to: Filter: Start typing to filter the data in real-time. Navigate: Use the Up/Down arrow keys. Inspect: Press Enter on a row to see a detailed view. Quit: Press q or Ctrl+C to exit.
For Developers: Building from Source
If you want to contribute to the project or build it from the source code, follow these steps.
1. Clone the Repository
First, clone the project from GitHub:
git clone https://github.com/manti-X/pipeviewapp.git
cd pipeviewapp
2. Set Up a Virtual Environment
It is highly recommended to work within a Python virtual environment.
# Create the environment
python3 -m venv .venv
3. Activate it
# On Linux/macOS:
source .venv/bin/activate
# On Windows:
.\.venv\Scripts\activate
4. Install in Editable Mode
Install the package and its dependencies in "editable" mode. This allows you to make changes to the source code and see them reflected immediately without reinstalling.
pip install -e .
You can now run the pipeview and pipeview-cache commands as if they were installed normally.
License
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pipeviewapp-0.1.0.tar.gz.
File metadata
- Download URL: pipeviewapp-0.1.0.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82f80f7c4f94bb912bd06179368eb92d8a7a67007639bac8637ca4aabdb668ba
|
|
| MD5 |
db89c79397ab865294dda1f578934eaa
|
|
| BLAKE2b-256 |
966206d4ede204bc78e285d9cd3982356c93025926860ddaff6f761d8ec49944
|
File details
Details for the file pipeviewapp-0.1.0-py3-none-any.whl.
File metadata
- Download URL: pipeviewapp-0.1.0-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
63a12ca46af34df81776c865a5d8f8a1a5091f2e913d9ecdeacca98989568c09
|
|
| MD5 |
24808fd2d36fbd4d88351d8d04b2d262
|
|
| BLAKE2b-256 |
ee8a617d955565cdcf579af0b9bcd7f238d93bc32edc40e0340081d3f4abae00
|