fetch-data

github crates.io docs.rs CI

Fetch data files from a URL, but only if needed. Verify contents via SHA256.

Fetch-Data checks a local data directory and then downloads needed files. It always verifies the local files and downloaded files via a hash.

Fetch-Data makes it easy to download large and small sample files. For example, here we download a genomics file from GitHub (if it has not already been downloaded). We then print the size of the now local file.

```rust use fetchdata::samplefile;

let path = sample_file("small.fam")?; println!("{}", std::fs::metadata(path)?.len()); // Prints 85

use fetch_data::FetchDataError; // '#' needed for doctest

Ok::<(), FetchDataError>(())

```

Features

Suggested Usage

You can set up FetchData many ways. Here are the steps -- followed by sample code -- for one set up.

```rust use fetch_data::{ctor, FetchData, FetchDataError}; use std::path::{Path, PathBuf};

[ctor]

static STATICFETCHDATA: FetchData = FetchData::new( includestr!("../registry.txt"), "https://raw.githubusercontent.com/CarlKCarlK/fetch-data/main/tests/data/", "BARAPPDATADIR", // env_key "com", // qualifier "Foo Corp", // organization "Bar App", // application );

/// Download a data file. pub fn samplefile>(path: P) -> Result { STATICFETCHDATA.fetchfile(path) }

```

You can now use your sample_file function to download your files as needed.

Registry Creation

You can create your registry.txt file many ways. Here are the steps -- followed by sample code -- for one way to create it.

```rust use fetchdata::{FetchData, dirtofilelist};

let fetchdata = FetchData::new( "", // registrycontents ignored "https://raw.githubusercontent.com/CarlKCarlK/fetch-data/main/tests/data/", "BARAPPDATADIR", // envkey "com", // qualifier "Foo Corp", // organization "Bar App", // application ); let filelist = dirtofilelist("tests/data")?; let registrycontents = fetchdata.genregistrycontents(filelist)?; println!("{registrycontents}");

use fetch_data::FetchDataError; // '#' needed for doctest

Ok::<(), FetchDataError>(())

```

Notes

Project Links