1 unstable release

0.1.0 Feb 15, 2024

#2088 in Parser implementations

Download history 107/week @ 2024-02-12 39/week @ 2024-02-19 207/week @ 2024-02-26 81/week @ 2024-03-04 106/week @ 2024-03-11 27/week @ 2024-03-18 1/week @ 2024-03-25 26/week @ 2024-04-01

162 downloads per month
Used in datavzrd

MIT license

15KB
285 lines

GitHub Workflow Status codecov

readervzrd

Readervzrd is a Rust library that provides utilities for reading tabular data from files without worrying if they are formatted as CSV or JSON. It offers flexible functionality to extract headers and iterate over records, supporting different file formats and structures.

Features

  • Supports uniform reading of data from CSV and JSON files.
  • Extracts headers from files.
  • Iterate over records
  • Handling of nested JSON structures

Installation

To use readervzrd in your Rust project, add it as a dependency in your Cargo.toml file:

[dependencies]
readervzrd = "0.1.0"

Usage

use readervzrd::{FileReader, FileError};

fn main() -> Result<(), FileError> {
    // Create a FileReader for a CSV file with ',' delimiter
    let mut reader = FileReader::new("data.csv", Some(','))?;

    // Create another FileReader for a JSON file
    let mut another_reader = FileReader::new("data.json", None)?;

    // Get headers from the file
    let headers = reader.headers()?;
    println!("Headers: {:?}", headers);

    // Iterate over records and process them
    for record in reader.records()? {
        println!("Record: {:?}", record);
    }

    Ok(())
}

Contributing

Contributions are welcome! If you find any issues or have suggestions for improvements, please open an issue or create a pull request on GitHub.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Dependencies

~1.8–2.7MB
~44K SLoC