fetch-hash

github crates.io docs.rs build status

This crate helps you retrieve data files from the Internet. Files are only downloaded when needed. The contents of the files are always verified via a SHA256 hash.

The ability to download data files makes creating sample code easier. For example, here we download a genomics file 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 (with Example Code)

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

[ctor]

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

pub fn samplefile>(path: P) -> Result { STATICFETCHHASH.fetchfile(path) }

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

```

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

Registry Creation (with Example Code)

Here is one suggested method for creating a registry.txt file.

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

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

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

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

```

Notes

Project Links