czv

Crates.ioczv
lib.rsczv
version0.0.2
sourcesrc
created_at2024-06-20 21:44:49.196219
updated_at2024-06-21 03:35:54.012407
descriptionRust library for performing CSV-related operations for data engineering and analysis.
homepage
repositoryhttps://github.com/rzmk/czv
max_upload_size
id1278736
size1,976,111
Mueez Khan (rzmk)

documentation

README

czv

Rust library for czv. czv is a library of CSV-related operations for data engineering and analysis tasks.

Links

Usage

To install czv, run:

cargo install czv

Let's say we want to print the total number of rows in a 4x3 CSV file fruits.csv including the header row:

use czv::{RowCount, Result};

fn main() -> Result<()> {
    let data = "\
fruits,price
apple,2.50
banana,3.00
strawberry,1.50
";
    let output = RowCount::new()
        .file_data(data)
        .include_header_row(true)
        .execute()?;
    println!("{output}"); // 4
    Ok(())
}

When ran, this should be the standard output printed in the terminal:

4

Tests

To run the tests, run:

cargo test

Benchmarks

To run the benchmarks, run:

cargo bench

For benchmarks we use criterion.rs.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Commit count: 30

cargo fmt