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