mule

Strong-headed (yet flexible) parser of columnar datasets from CSV, TSV or other delimiter-separated datasets

Crates.io Documentation Crates.io

Usage

```rust use mule::{read_file, Result};

[tokio::main]

pub async fn main() -> Result<()> { let filepath = "datasets/sales-10.csv"; let dataset = readfile(file_path).await?; println!("Got dataset: {:#?}", dataset); Ok(()) } ```

Other examples are available in the examples directory.