13 releases
0.3.4-beta.2 | Jan 21, 2024 |
---|---|
0.3.3 | Dec 22, 2023 |
0.3.3-rc1 | Nov 28, 2023 |
0.3.2 | Aug 18, 2022 |
0.3.1 | Jun 30, 2022 |
#250 in Text processing
Used in 4 crates
(3 directly)
2MB
2K
SLoC
dcsv
Dynamic csv reader, editor, and writer library.
If you use structured csv data, use csv crate
If you want higher wrapper around csv editing, use ced
Feature
- Read csv which has undecided format
- Optionally validate csv values
- Edit csv values
- Write to file
- Print to table
Basic usage
Refer Usage for more usages. Docs.rs is also useful in general.
Include dcsv in cargo.toml file first.
[dependencies]
dcsv = "*"
// Trait VCont is required to use many methods
use dcsv::{Reader, VirtualData, Value, VCont};
use std::fs::File;
let data: VirtualData = Reader::new()
.use_delimiter(';') // Default is comma
.use_line_delimiter('|') // Default is '\n, \r\n'
.data_from_stream(
BufReader::new(
File::open("file_name.csv")
.expect("Failed to read file")
)
)
.expect("Failed to retrieve csv value from file");
// import VCont trait before use
// Refer docs.rs for various VirtualData methods
let value : Option<&Value> = data.get_cell(1,1);
Why?
Most of the time, well known csv crate is much more performant and eaiser to use because csv format doesn't change a lot. However there are cases where program expects undecided csv formats and contents, which means program has to ensure every value is compatible with expected standard. In such case, csv crate's type guarantee is painful to handle with.
See the examples for usages.
Not yet
- Fully comptaible with csv spec
Dependencies
~3.5–4.5MB
~73K SLoC