| Crates.io | csvr |
| lib.rs | csvr |
| version | 0.1.1 |
| created_at | 2024-01-24 19:20:21.107223+00 |
| updated_at | 2024-02-20 21:28:51.259707+00 |
| description | A cli tool to parse and manipulate csv files |
| homepage | |
| repository | https://github.com/0xsouravm/csvr |
| max_upload_size | |
| id | 1112773 |
| size | 64,032 |
This Rust command-line tool provides a set of CSV file manipulation commands, allowing users to perform operations such as displaying, modifying, deleting rows/columns/entries, merging files, sorting, adding rows, and more.
csvr = "0.1.0"
use csvr::{ CSVFile, CSVError, FileDataUtils };
cargo run csvfile.csv
(The CLI opens up if the file is loaded successfully. Does not load empty files.)
>>> help
>>> display row 1
>>> -d col 3
>>> delete col 3
>>> -r item 3 5
>>> merge secondcsv.csv
>>> write
>>> write fileName.csv
>>> exit