fetch-hash

github crates.io docs.rs build status

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

Fetch-Hash makes creating example code easier. In this example, we download a genomics file from GitHub and print its size:

```rust use fetchhash::samplefile;

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

use fetch_hash::FetchHashError; // '#' needed for doctest

Ok::<(), FetchHashError>(())

```

Features

Suggested Usage

You can use FetchHash many ways. Here are the steps for one way to use it, followed by sample code.

```rust use fetch_hash::{ctor, FetchHash, FetchHashError}; use std::path::{Path, PathBuf};

[ctor]

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

/// Download a data file. pub fn samplefile>(path: P) -> Result { STATICFETCHHASH.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 for one way to create it, followed by sample code.

```rust use fetchhash::{FetchHash, dirtofilelist};

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

use fetch_hash::FetchHashError; // '#' needed for doctest

Ok::<(), FetchHashError>(())

```

Notes

Project Links