HDF5 sample file
hdf5_table_dataset_sample.h5
52.6 KB
application/x-hdf5
SHA256 verified
File details
Filename
hdf5_table_dataset_sample.h5Size52.6 KB (53880 bytes)
MIME type
application/x-hdf5Extension
.h5SHA256
5762fb7360439a87a4f166b3ec47d3132f7adf35cfc9548269dbb735ab6b0d49Download commands
Use in scripts and tests
curl -L -o hdf5_table_dataset_sample.h5 \
https://samplefile.com/samples/download/data/hdf5/hdf5_table_dataset_sample.h5/
wget -O hdf5_table_dataset_sample.h5 \
https://samplefile.com/samples/download/data/hdf5/hdf5_table_dataset_sample.h5/
import requests
url = "https://samplefile.com/samples/download/data/hdf5/hdf5_table_dataset_sample.h5/"
resp = requests.get(url)
with open("hdf5_table_dataset_sample.h5", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/data/hdf5/hdf5_table_dataset_sample.h5/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("hdf5_table_dataset_sample.h5", buf);
# Download and verify SHA256
curl -L -o hdf5_table_dataset_sample.h5 https://samplefile.com/samples/download/data/hdf5/hdf5_table_dataset_sample.h5/
echo "5762fb7360439a87a4f166b3ec47d3132f7adf35cfc9548269dbb735ab6b0d49 hdf5_table_dataset_sample.h5" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/data/hdf5/hdf5_table_dataset_sample.h5/").content
assert hashlib.sha256(data).hexdigest() == "5762fb7360439a87a4f166b3ec47d3132f7adf35cfc9548269dbb735ab6b0d49"
More HDF5 files
Other HDF5 Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
hdf5_big_endian_dataset_sample.h5 |
70.7 KB | 3602ed2a0435f2bf… |
Download |
hdf5_charset_dataset_sample.h5 |
8.1 KB | 5369018e38eef09f… |
Download |