Skip to content
This repository has been archived by the owner on Nov 27, 2023. It is now read-only.

VictorBulba/csvquery

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Engine for making key-value queries in csv file

Example

let opts = EngineOptions::default();
let mut engine: Engine<String, YourType> = Engine::from_file_with_opts("file.csv", YourType::make_key, opts).unwrap();
let value = engine.get_from_file("key");
println!("{:?}", value);

About

Rust lib for making key-value queries in csv file

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages