A Rust library to operate files easily and quickly
```rust // read a csv file and load a list of HashMap models where you can get value by key. fn testgetcsvsimple(){ let result=readcsv_simple("data/test.csv"); for model in result{ println!("{:?}",model); } }
// save a csv file by using a list of HashMap models where you can get value by key. fn testwritecsv(){ let listmodel=readcsv("data/test.csv"); let flag=writecsv("data/test1.csv",listmodel); println!("{}",flag); } ``` Other available functions are:
MIT